Burgers FDM Work-Precision Diagrams with Various MethodOfLines Methods

This benchmark is for the MethodOfLines package, which is an automatic PDE discretization package. It is concerned with comparing the performance of various discretization methods for the Burgers equation.

using MethodOfLines, DomainSets, OrdinaryDiffEq, ModelingToolkit, DiffEqDevTools, LinearAlgebra,
      LinearSolve, Plots

Here is the burgers equation with a Dirichlet and Neumann boundary conditions,

# pdesys1 has Dirichlet BCs, pdesys2 has Neumann BCs
const N = 30

@parameters x t
@variables u(..)
Dx = Differential(x)
Dt = Differential(t)
x_min = 0.0
x_max = 1.0
t_min = 0.0
t_max = 20.0

solver = FBDF()

analytic_u(t, x) = x / (t + 1)

analytic = [u(t, x) => analytic_u]

eq = Dt(u(t, x)) ~ -u(t, x) * Dx(u(t, x))

bcs1 = [u(0, x) ~ x,
    u(t, x_min) ~ analytic_u(t, x_min),
    u(t, x_max) ~ analytic_u(t, x_max)]

bcs2 = [u(0, x) ~ x,
    Dx(u(t, x_min)) ~ 1 / (t + 1),
    Dx(u(t, x_max)) ~ 1 / (t + 1)]

domains = [t ∈ Interval(t_min, t_max),
    x ∈ Interval(x_min, x_max)]

@named pdesys1 = PDESystem(eq, bcs1, domains, [t, x], [u(t, x)])
@named pdesys2 = PDESystem(eq, bcs2, domains, [t, x], [u(t, x)])
PDESystem
Equations: Symbolics.Equation[Differential(t)(u(t, x)) ~ -Differential(x)(u
(t, x))*u(t, x)]
Boundary Conditions: Symbolics.Equation[u(0, x) ~ x, Differential(x)(u(t, 0
.0)) ~ 1 / (1 + t), Differential(x)(u(t, 1.0)) ~ 1 / (1 + t)]
Domain: Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0)
, Symbolics.VarDomainPairing(x, 0.0..1.0)]
Dependent Variables: Symbolics.Num[u(t, x)]
Independent Variables: Symbolics.Num[t, x]
Parameters: SciMLBase.NullParameters()
Default Parameter ValuesDict{Any, Any}()

Here is a uniform discretization with the Upwind scheme:

discupwind1 = MOLFiniteDifference([x => N], t, advection_scheme=UpwindScheme())
discupwind2 = MOLFiniteDifference([x => N-1], t, advection_scheme=UpwindScheme(), grid_align=edge_align)
MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLi
nes.ScalarizedDiscretization}(Dict{Symbolics.Num, Int64}(x => 29), t, 2, Me
thodOfLines.UpwindScheme(1), MethodOfLines.EdgeAlignedGrid(), true, false, 
MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple
{}, NamedTuple{(), Tuple{}}}())

Here is a uniform discretization with the WENO scheme:

discweno1 = MOLFiniteDifference([x => N], t, advection_scheme=WENOScheme())
discweno2 = MOLFiniteDifference([x => N-1], t, advection_scheme=WENOScheme(), grid_align=edge_align)
MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLi
nes.ScalarizedDiscretization}(Dict{Symbolics.Num, Int64}(x => 29), t, 2, Me
thodOfLines.WENOScheme(1.0e-6), MethodOfLines.EdgeAlignedGrid(), true, fals
e, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tu
ple{}, NamedTuple{(), Tuple{}}}())

Here is a non-uniform discretization with the Upwind scheme, using tanh (nonuniform WENO is not implemented yet):

gridf(x) = tanh.(x) ./ 2 .+ 0.5
gridnu1 = gridf(vcat(-Inf, range(-3.0, 3.0, length=N-2), Inf))
gridnu2 = gridf(vcat(-Inf, range(-3.0, 3.0, length=N - 3), Inf))

discnu1 = MOLFiniteDifference([x => gridnu1], t, advection_scheme=UpwindScheme())
discnu2 = MOLFiniteDifference([x => gridnu2], t, advection_scheme=UpwindScheme(), grid_align=edge_align)
MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLi
nes.ScalarizedDiscretization}(Dict{Symbolics.Num, Vector{Float64}}(x => [0.
0, 0.002472623156634768, 0.003917167752596873, 0.006200391950338835, 0.0098
01358083433409, 0.015461100972823438, 0.024308800614114, 0.0380240999407952
, 0.059009712490737665, 0.09048788799089097  …  0.909512112009109, 0.940990
2875092624, 0.9619759000592047, 0.975691199385886, 0.9845388990271766, 0.99
01986419165666, 0.9937996080496612, 0.9960828322474031, 0.9975273768433652,
 1.0]), t, 2, MethodOfLines.UpwindScheme(1), MethodOfLines.EdgeAlignedGrid(
), true, false, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol
, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}())

Here are the problems for pdesys1:

probupwind1 = discretize(pdesys1, discupwind1; analytic=analytic)
probupwind2 = discretize(pdesys1, discupwind2; analytic=analytic)

probweno1 = discretize(pdesys1, discweno1; analytic=analytic)
probweno2 = discretize(pdesys1, discweno2; analytic=analytic)

probnu1 = discretize(pdesys1, discnu1; analytic=analytic)
probnu2 = discretize(pdesys1, discnu2; analytic=analytic)

probs1 = [probupwind1, probupwind2, probnu1, probnu2, probweno1, probweno2]
6-element Vector{SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float
64}, true, SciMLBase.NullParameters, F, Base.Pairs{Symbol, Union{}, Tuple{}
, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem} where F}:
 SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, SciML
Base.NullParameters, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, 
ModelingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0x5d3ba440, 0xb5cb7128, 0x920cd8ef, 0x3c379efd, 0xf
fbbc83c)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋a
rg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0xce047baf, 0x59f89fa2, 0x95be393f, 0xe760178b, 0x67d23c83)}
}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbo
l, Nothing, ModelingToolkit.var"#472#generated_observed#471"{Bool, Modeling
Toolkit.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}, Ba
se.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.Stan
dardODEProblem}(SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, Model
ingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x5d3ba440, 0xb5cb7128, 0x920cd8ef, 0x3c379efd, 0xffbbc8
3c)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0xce047baf, 0x59f89fa2, 0x95be393f, 0xe760178b, 0x67d23c83)}}, Li
nearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, No
thing, ModelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolk
it.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}(Modeling
Toolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x5d3ba440, 0xb5cb7128, 0x920cd8ef, 0x3c379efd, 0xffbbc83c)
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋
arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0xce047baf, 0x59f89fa2, 0x95be393f, 0xe760178b, 0x67d23c83)}}(Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x5d3ba440
, 0xb5cb7128, 0x920cd8ef, 0x3c379efd, 0xffbbc83c)}(quote
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (*)(-1, (/)(-1.0, (+)(1, t)))
            var"(u(t))[1]" = 0.0
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
                (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, 
Val{1}(), Val{(28,)}(), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1), 0)
                            (*)((+)((*)(-29.0, var"(u(t))[1]"), (*)(29.0, (
getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1, 1))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1)), (*)(
29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1)), (*)(
29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 2))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2)), (*)(
29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2)), (*)(
29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 3))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3)), (*)(
29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 3))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3)), (*)(
29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 4))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4)), (*)(
29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 4))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4)), (*)(
29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 5))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5)), (*)(
29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5)), (*)(
29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 6))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6)), (*)(
29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 6))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6)), (*)(
29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 7))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7)), (*)(
29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7)), (*)(
29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 8))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8)), (*)(
29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8)), (*)(
29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 9))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9)), (*)(
29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 9))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9)), (*)(
29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 10))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 10)), (*)
(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 10)), (*)
(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 11))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 11)), (*)
(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 11)), (*)
(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 12))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 12)), (*)
(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 12)), (*)
(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 13))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 13)), (*)
(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 13))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 13)), (*)
(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 14))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 14)), (*)
(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 14)), (*)
(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 15))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 15)), (*)
(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 15)), (*)
(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 16))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 16)), (*)
(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 16)), (*)
(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 17))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 17)), (*)
(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 17)), (*)
(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 18))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 18)), (*)
(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 18))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 18)), (*)
(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 19))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 19)), (*)
(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 19)), (*)
(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 20))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 20)), (*)
(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 20))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 20)), (*)
(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 21))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 21)), (*)
(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 21))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 21)), (*)
(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 22))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 22)), (*)
(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 22)), (*)
(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 23))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 23)), (*)
(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 23))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 23)), (*)
(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 24))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 24)), (*)
(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 24)), (*)
(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 25))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 25)), (*)
(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 25)), (*)
(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 26))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 26)), (*)
(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 26))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 26)), (*)
(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 27))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 27)), (*)
(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 27))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 27)), (*)
(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 28))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 28)), (*)
(29.0, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 28))
                        end))
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0xce047baf, 0x59f89fa2, 0x95be393f, 0xe760178b, 0x67d23c83)}(quot
e
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (*)(-1, (/)(-1.0, (+)(1, t)))
            var"(u(t))[1]" = 0.0
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/Symbolics/FGTCH/src/build_function.jl:519 =#
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds
 begin
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1),
 0)
                                    (*)((+)((*)(-29.0, var"(u(t))[1]"), (*)
(29.0, (getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1, 1))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
)), (*)(29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1))
                                end)
                        ˍ₋out[2] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
)), (*)(29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 2))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
)), (*)(29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2))
                                end)
                        ˍ₋out[3] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
)), (*)(29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 3))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3
)), (*)(29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 3))
                                end)
                        ˍ₋out[4] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3
)), (*)(29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 4))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4
)), (*)(29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 4))
                                end)
                        ˍ₋out[5] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4
)), (*)(29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 5))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5
)), (*)(29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5))
                                end)
                        ˍ₋out[6] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5
)), (*)(29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 6))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6
)), (*)(29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 6))
                                end)
                        ˍ₋out[7] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6
)), (*)(29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 7))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7
)), (*)(29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7))
                                end)
                        ˍ₋out[8] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7
)), (*)(29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 8))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8
)), (*)(29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8))
                                end)
                        ˍ₋out[9] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8
)), (*)(29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 9))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9
)), (*)(29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 9))
                                end)
                        ˍ₋out[10] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9
)), (*)(29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 10))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
0)), (*)(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10))
                                end)
                        ˍ₋out[11] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
0)), (*)(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 11))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
1)), (*)(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11))
                                end)
                        ˍ₋out[12] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
1)), (*)(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 12))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
2)), (*)(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12))
                                end)
                        ˍ₋out[13] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
2)), (*)(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 13))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
3)), (*)(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 13))
                                end)
                        ˍ₋out[14] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
3)), (*)(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 14))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
4)), (*)(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14))
                                end)
                        ˍ₋out[15] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
4)), (*)(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 15))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
5)), (*)(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15))
                                end)
                        ˍ₋out[16] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
5)), (*)(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 16))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
6)), (*)(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16))
                                end)
                        ˍ₋out[17] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
6)), (*)(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 17))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
7)), (*)(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17))
                                end)
                        ˍ₋out[18] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
7)), (*)(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 18))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
8)), (*)(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 18))
                                end)
                        ˍ₋out[19] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
8)), (*)(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 19))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
9)), (*)(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19))
                                end)
                        ˍ₋out[20] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
9)), (*)(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 20))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
0)), (*)(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 20))
                                end)
                        ˍ₋out[21] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
0)), (*)(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 21))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
1)), (*)(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 21))
                                end)
                        ˍ₋out[22] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
1)), (*)(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 22))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
2)), (*)(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22))
                                end)
                        ˍ₋out[23] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
2)), (*)(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 23))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
3)), (*)(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 23))
                                end)
                        ˍ₋out[24] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
3)), (*)(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 24))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
4)), (*)(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24))
                                end)
                        ˍ₋out[25] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
4)), (*)(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 25))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
5)), (*)(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25))
                                end)
                        ˍ₋out[26] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
5)), (*)(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 26))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
6)), (*)(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 26))
                                end)
                        ˍ₋out[27] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
6)), (*)(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 27))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
7)), (*)(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 27))
                                end)
                        ˍ₋out[28] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
7)), (*)(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 28))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
8)), (*)(29.0, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 28))
                                end)
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing,
 nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("ge
tindex(u(t), 2)"), Symbol("getindex(u(t), 3)"), Symbol("getindex(u(t), 4)")
, Symbol("getindex(u(t), 5)"), Symbol("getindex(u(t), 6)"), Symbol("getinde
x(u(t), 7)"), Symbol("getindex(u(t), 8)"), Symbol("getindex(u(t), 9)"), Sym
bol("getindex(u(t), 10)"), Symbol("getindex(u(t), 11)")  …  Symbol("getinde
x(u(t), 20)"), Symbol("getindex(u(t), 21)"), Symbol("getindex(u(t), 22)"), 
Symbol("getindex(u(t), 23)"), Symbol("getindex(u(t), 24)"), Symbol("getinde
x(u(t), 25)"), Symbol("getindex(u(t), 26)"), Symbol("getindex(u(t), 27)"), 
Symbol("getindex(u(t), 28)"), Symbol("getindex(u(t), 29)")], :t, nothing, M
odelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolkit.ODESy
stem, Dict{Any, Any}}(false, Core.Box(Symbolics.Equation[(u(t))[30] ~ -(-1.
0 / (1 + t)), (u(t))[1] ~ 0.0]), ModelingToolkit.ODESystem(Symbolics.Equati
on[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (29.0(u(t))[2] - 29.
0(u(t))[1])*(u(t))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differen
tial(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])
*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(t)((u(
t))[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4],
 (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -
ifelse((u(t))[5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t)
)[6] - 29.0(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t
))[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0
(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, 
(29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*
(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))
[8] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]),
 Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(
u(t))[8])*(u(t))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Different
ial(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9
])*(u(t))[10], (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differential(
t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*
(u(t))[11], (29.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differential(
t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (29.0(u(t))[20] - 29.0(u(t))[19])*
(u(t))[20], (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[20]), Differential(t)(
(u(t))[21]) ~ -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(
t))[21], (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(t)((u(
t))[22]) ~ -ifelse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))
[22], (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)((u(t))
[23]) ~ -ifelse((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23
], (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24
]) ~ -ifelse((u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], 
(29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) 
~ -ifelse((u(t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29
.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -
ifelse((u(t))[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(
u(t))[27] - 29.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ife
lse((u(t))[27] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t
))[28] - 29.0(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse
((u(t))[28] > 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[
29] - 29.0(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u
(t))[29] > 0, (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30]
 - 29.0(u(t))[29])*(u(t))[29])], t, SymbolicUtils.Term{Real, Nothing}[(u(t)
)[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(
t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[20], (u(t))[21], (u(t))[22], (u(t
))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[
29]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[3
0] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0.0], Base.RefValue{Vector{Symbolics.Nu
m}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)
), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Ma
trix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Mat
rix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys1, Modeling
Toolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.5517241379310345, (u(t)
)[18] => 0.5862068965517241, (u(t))[8] => 0.2413793103448276, (u(t))[10] =>
 0.3103448275862069, (u(t))[27] => 0.896551724137931, (u(t))[28] => 0.93103
44827586207, (u(t))[2] => 0.034482758620689655, (u(t))[24] => 0.79310344827
58621, (u(t))[30] => 1.0, (u(t))[21] => 0.6896551724137931…), nothing, noth
ing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.Sy
mbolicContinuousCallback(Symbolics.Equation[], Symbolics.Equation[])], Mode
lingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}
(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}, Met
hodOfLines.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodOfLin
es.ScalarizedDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{Any}
, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1,
 MethodOfLines.CenterAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], S
ymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{Symbo
licUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Float
64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUti
ls.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.Immut
ableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.Fn
Type{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.Immutable
Dict{DataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, B
ase.ImmutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, 
Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t
))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u
(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t
))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[
30]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Ste
pRangeLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float6
4}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real
, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePreci
sion{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.03448275862
0689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any
}}, Float64}(x => 0.034482758620689655), Dict{SymbolicUtils.Term{Real, Base
.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}
}}}(u(t, x) => CartesianIndices((30,))), Dict{SymbolicUtils.Term{Real, Base
.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}
}}}(u(t, x) => CartesianIndices((30,)))), MethodOfLines.MOLFiniteDifference
{MethodOfLines.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretization}(D
ict{Symbolics.Num, Int64}(x => 30), t, 2, MethodOfLines.UpwindScheme(1), Me
thodOfLines.CenterAlignedGrid(), true, false, MethodOfLines.ScalarizedDiscr
etization(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(
)), ModelingToolkit.PDESystem(Symbolics.Equation[Differential(x)(u(t, x))*u
(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, u(t
, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + t)], Symbolics.VarDomainPairing[Symbol
ics.VarDomainPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)
], Symbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(),
 Dict{Any, Any}(), nothing, Any[], :pdesys1, nothing), false, Base.RefValue
{Any}(nothing)), ModelingToolkit.SystemStructures.TearingState{ModelingTool
kit.ODESystem}(ModelingToolkit.ODESystem(Symbolics.Equation[Differential(t)
((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (29.0(u(t))[2] - 29.0(u(t))[1])*(u(t))
[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3])
 ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(
u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse(
(u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 
29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] >
 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[
5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u
(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[
6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] - 2
9.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Differ
ential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7
])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(t)((
u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9
], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10])
 ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (29
.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -
ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.0(
u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -
ifelse((u(t))[20] > 0, (29.0(u(t))[20] - 29.0(u(t))[19])*(u(t))[20], (29.0(
u(t))[21] - 29.0(u(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ife
lse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t
))[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse
((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[
23] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u
(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24]
 - 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t)
)[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 
29.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[2
5] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] - 29.
0(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] 
> 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u
(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0
, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t)
)[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (
29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[2
8])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.
0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30] - 29.0(u(t))[29])
*(u(t))[29])], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(t))[3], (
u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]
, (u(t))[11]  …  (u(t))[20], (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24]
, (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29]], Any[], Dict{
Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[30] ~ -(-1.0 / (1 +
 t)), (u(t))[1] ~ 0.0], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[
]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{A
ny}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num
}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}
}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys1, ModelingToolkit.ODESystem[
], Dict{Any, Any}((u(t))[17] => 0.5517241379310345, (u(t))[18] => 0.5862068
965517241, (u(t))[8] => 0.2413793103448276, (u(t))[10] => 0.310344827586206
9, (u(t))[27] => 0.896551724137931, (u(t))[28] => 0.9310344827586207, (u(t)
)[2] => 0.034482758620689655, (u(t))[24] => 0.7931034482758621, (u(t))[30] 
=> 1.0, (u(t))[21] => 0.6896551724137931…), nothing, nothing, nothing, Mode
lingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCa
llback(Symbolics.Equation[], Symbolics.Equation[])], ModelingToolkit.Symbol
icDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}(), MethodOfLines.
DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}, MethodOfLines.MOLFini
teDifference{MethodOfLines.CenterAlignedGrid, MethodOfLines.ScalarizedDiscr
etization}, ModelingToolkit.PDESystem, Base.RefValue{Any}, MethodOfLines.Sc
alarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.Cen
terAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUtils.Sym{R
eal, Base.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sym{Real,
 Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.
0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, R
eal}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType,
 Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real},
 Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any
}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.ImmutableDict{
DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict
{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], 
(u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9]
, (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25]
, (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30]]), Dict{Symbol
icUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64,
 Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => 0
.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDi
ct{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, Bas
e.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dict
{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Float64}(x => 
0.034482758620689655), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{Dat
aType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => Car
tesianIndices((30,))), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{Dat
aType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => Car
tesianIndices((30,)))), MethodOfLines.MOLFiniteDifference{MethodOfLines.Cen
terAlignedGrid, MethodOfLines.ScalarizedDiscretization}(Dict{Symbolics.Num,
 Int64}(x => 30), t, 2, MethodOfLines.UpwindScheme(1), MethodOfLines.Center
AlignedGrid(), true, false, MethodOfLines.ScalarizedDiscretization(), Base.
Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolki
t.PDESystem(Symbolics.Equation[Differential(x)(u(t, x))*u(t, x) + Different
ial(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t,
 1.0) ~ 1.0 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairi
ng(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t
, x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(),
 nothing, Any[], :pdesys1, nothing), false, Base.RefValue{Any}(nothing)), n
othing, ModelingToolkit.Substitutions(Symbolics.Equation[(u(t))[30] ~ -(-1.
0 / (1 + t)), (u(t))[1] ~ 0.0], [Int64[], Int64[]], Symbolics.Equation[Diff
erential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, 29.0((u(t))[2]^2), (29.0(u(
t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u
(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 29
.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0
, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4]
)*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t
))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5]
), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[6] - 29.
0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), Differen
tial(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6])
*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Differential(t)((u(
t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8],
 (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -
ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t)
)[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u
(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[11] 
- 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))
[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))[12] - 2
9.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))
[20] > 0, (29.0(u(t))[20] - 29.0(u(t))[19])*(u(t))[20], (29.0(u(t))[21] - 2
9.0(u(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21
] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t))[22] - 29.0
(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] >
 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[23] - 29.0(u(
t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0,
 (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24] - 29.0(u(t))
[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (2
9.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t))[24
])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (29.0
(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] - 29.0(u(t))[25])*
(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.0(u(
t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u(t))[26])*(u(
t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u(t))
[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))
[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t))[28
] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[28
]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[29] -
 29.0(u(t))[28])*(u(t))[29], (29.0 / (1 + t) - 29.0(u(t))[29])*(u(t))[29])]
)), Any[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (
u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  Differential(t)((u(t))[20])
, Differential(t)((u(t))[21]), Differential(t)((u(t))[22]), Differential(t)
((u(t))[23]), Differential(t)((u(t))[24]), Differential(t)((u(t))[25]), Dif
ferential(t)((u(t))[26]), Differential(t)((u(t))[27]), Differential(t)((u(t
))[28]), Differential(t)((u(t))[29])], ModelingToolkit.SystemStructures.Sys
temStructure(ModelingToolkit.SystemStructures.DiffGraph(Union{Nothing, Int6
4}[29, 30, 31, 32, 33, 34, 35, 36, 37, 38  …  nothing, nothing, nothing, no
thing, nothing, nothing, nothing, nothing, nothing, nothing], Union{Nothing
, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, nothing, not
hing, nothing, nothing  …  19, 20, 21, 22, 23, 24, 25, 26, 27, 28]), Modeli
ngToolkit.SystemStructures.DiffGraph(Union{Nothing, Int64}[nothing, nothing
, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing  …
  nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, n
othing, nothing], Union{Nothing, Int64}[nothing, nothing, nothing, nothing,
 nothing, nothing, nothing, nothing, nothing, nothing  …  nothing, nothing,
 nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing]), 
BipartiteGraph with (28, 56) (𝑠,𝑑)-vertices
   #  src      dst
  1   [1, 29]  [1]
  2   [2, 30]  [2]
  3   [3, 31]  [3]
  4   [4, 32]  [4]
  5   [5, 33]  [5]
  6   [6, 34]  [6]
  7   [7, 35]  [7]
  8   [8, 36]  [8]
  9   [9, 37]  [9]
  ⋮            
 48   ⋅        [20]
 49   ⋅        [21]
 50   ⋅        [22]
 51   ⋅        [23]
 52   ⋅        [24]
 53   ⋅        [25]
 54   ⋅        [26]
 55   ⋅        [27]
 56   ⋅        [28], BipartiteGraph with (30, 58) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    ∅
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    ∅
 55   ⋅    ∅
 56   ⋅    ∅
 57   ⋅    [29]
 58   ⋅    [30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0.0], [Int64[], Int64[]], Symbo
lics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, 29.0((u(t
))[2]^2), (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t)
)[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (
29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -if
else((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[
5] - 29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))
[5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u
(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (2
9.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u
(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7
] - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), D
ifferential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(
t))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential
(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(
t))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))
[10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10]
, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]
) ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (
29.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]
) ~ -ifelse((u(t))[20] > 0, (29.0(u(t))[20] - 29.0(u(t))[19])*(u(t))[20], (
29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~
 -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.
0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -i
felse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u
(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifel
se((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t)
)[24] - 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse(
(u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[2
5] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(
t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] 
- 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))
[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 2
9.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27
] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0
(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] >
 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(
t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0,
 (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (29.0 / (1 + t) - 29.0(u(t))
[29])*(u(t))[29])])), Dict{Any, Any}()), nothing, ModelingToolkit.ODESystem
(Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (29
.0(u(t))[2] - 29.0(u(t))[1])*(u(t))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u(
t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3]
 - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Di
fferential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t
))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[4]), Differential(
t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t
))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6
]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.
0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifels
e((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] 
- 29.0(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8]
 > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t)
)[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0
(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t
))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[1
0] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10
]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] -
 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11]) 
 …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (29.0(u(t))[20] -
 29.0(u(t))[19])*(u(t))[20], (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[20]),
 Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29
.0(u(t))[20])*(u(t))[21], (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Di
fferential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(
u(t))[21])*(u(t))[22], (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Diffe
rential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t
))[22])*(u(t))[23], (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[23]), Differen
tial(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[
23])*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[24]), Differentia
l(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24]
)*(u(t))[25], (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[25]), Differential(t
)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(
u(t))[26], (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[26]), Differential(t)((
u(t))[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t
))[27], (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[27]), Differential(t)((u(t
))[28]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[
28], (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[
29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29]
, (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[29])], t, SymbolicUtils.Term{Rea
l, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7
], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[20], (u(t))[21],
 (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u
(t))[28], (u(t))[29]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.
Equation[(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0.0], Base.RefValue{Ve
ctor{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.
Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)),
 Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), 
Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :
pdesys1, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.551724
1379310345, (u(t))[18] => 0.5862068965517241, (u(t))[8] => 0.24137931034482
76, (u(t))[10] => 0.3103448275862069, (u(t))[27] => 0.896551724137931, (u(t
))[28] => 0.9310344827586207, (u(t))[2] => 0.034482758620689655, (u(t))[24]
 => 0.7931034482758621, (u(t))[30] => 1.0, (u(t))[21] => 0.6896551724137931
…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[M
odelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[], Symbolics.E
quation[])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLM
etadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.Center
AlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.CenterAligned
Grid, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDESystem, B
ase.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.Di
screteSpace{1, 1, MethodOfLines.CenterAlignedGrid}(MethodOfLines.VariableMa
p(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[
x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tup
le{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtil
s.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym
{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym
{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Rea
l, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, Symbolic
Utils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{Symbolic
Utils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}
(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[
6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22],
 (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u
(t))[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{Dat
aType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, Base.Twic
ePrecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dict{Symbo
licUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64
, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => 
0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableD
ict{DataType, Any}}, Float64}(x => 0.034482758620689655), Dict{SymbolicUtil
s.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{
Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{SymbolicUtil
s.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{
Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), MethodOfLines.MO
LFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodOfLines.Scalarized
Discretization}(Dict{Symbolics.Num, Int64}(x => 30), t, 2, MethodOfLines.Up
windScheme(1), MethodOfLines.CenterAlignedGrid(), true, false, MethodOfLine
s.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTup
le{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equation[Different
ial(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equation
[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + t)], Symbolics.VarDom
ainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolics.VarDomainPai
ring(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.
NullParameters(), Dict{Any, Any}(), nothing, Any[], :pdesys1, nothing), fal
se, Base.RefValue{Any}(nothing)), ModelingToolkit.SystemStructures.TearingS
tate{ModelingToolkit.ODESystem}(ModelingToolkit.ODESystem(Symbolics.Equatio
n[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (29.0(u(t))[2] - 29.0
(u(t))[1])*(u(t))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Different
ial(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*
(u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t
))[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], 
(29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -i
felse((u(t))[5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))
[6] - 29.0(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t)
)[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(
u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (
29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(
u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[
8] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), 
Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u
(t))[8])*(u(t))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Differenti
al(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9]
)*(u(t))[10], (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differential(t
)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(
u(t))[11], (29.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differential(t
)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (29.0(u(t))[20] - 29.0(u(t))[19])*(
u(t))[20], (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[20]), Differential(t)((
u(t))[21]) ~ -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t
))[21], (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t
))[22]) ~ -ifelse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[
22], (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[
23]) ~ -ifelse((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23]
, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]
) ~ -ifelse((u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (
29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~
 -ifelse((u(t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.
0(u(t))[26] - 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -i
felse((u(t))[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u
(t))[27] - 29.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifel
se((u(t))[27] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t)
)[28] - 29.0(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse(
(u(t))[28] > 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[2
9] - 29.0(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(
t))[29] > 0, (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30] 
- 29.0(u(t))[29])*(u(t))[29])], t, SymbolicUtils.Term{Real, Nothing}[(u(t))
[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t
))[9], (u(t))[10], (u(t))[11]  …  (u(t))[20], (u(t))[21], (u(t))[22], (u(t)
)[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[2
9]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[30
] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0.0], Base.RefValue{Vector{Symbolics.Num
}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0))
, Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Mat
rix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matr
ix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys1, ModelingT
oolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.5517241379310345, (u(t))
[18] => 0.5862068965517241, (u(t))[8] => 0.2413793103448276, (u(t))[10] => 
0.3103448275862069, (u(t))[27] => 0.896551724137931, (u(t))[28] => 0.931034
4827586207, (u(t))[2] => 0.034482758620689655, (u(t))[24] => 0.793103448275
8621, (u(t))[30] => 1.0, (u(t))[21] => 0.6896551724137931…), nothing, nothi
ng, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.Sym
bolicContinuousCallback(Symbolics.Equation[], Symbolics.Equation[])], Model
ingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}(
), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}, Meth
odOfLines.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodOfLine
s.ScalarizedDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{Any},
 MethodOfLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1, 
MethodOfLines.CenterAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], Sy
mbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{Symbol
icUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Float6
4}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtil
s.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.Immuta
bleDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnT
ype{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableD
ict{DataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Ba
se.ImmutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, B
ase.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t)
)[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(
t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t)
)[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[3
0]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Step
RangeLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64
}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real,
 Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecis
ion{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620
689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}
}, Float64}(x => 0.034482758620689655), Dict{SymbolicUtils.Term{Real, Base.
ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}
}}(u(t, x) => CartesianIndices((30,))), Dict{SymbolicUtils.Term{Real, Base.
ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}
}}(u(t, x) => CartesianIndices((30,)))), MethodOfLines.MOLFiniteDifference{
MethodOfLines.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretization}(Di
ct{Symbolics.Num, Int64}(x => 30), t, 2, MethodOfLines.UpwindScheme(1), Met
hodOfLines.CenterAlignedGrid(), true, false, MethodOfLines.ScalarizedDiscre
tization(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()
), ModelingToolkit.PDESystem(Symbolics.Equation[Differential(x)(u(t, x))*u(
t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, u(t,
 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + t)], Symbolics.VarDomainPairing[Symboli
cs.VarDomainPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)]
, Symbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), 
Dict{Any, Any}(), nothing, Any[], :pdesys1, nothing), false, Base.RefValue{
Any}(nothing)), nothing, ModelingToolkit.Substitutions(Symbolics.Equation[(
u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0.0], [Int64[], Int64[]], Symbol
ics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, 29.0((u(t)
)[2]^2), (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))
[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (2
9.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ife
lse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5
] - 29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[
5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(
t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29
.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(
t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7]
 - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Di
fferential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t
))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(
t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t
))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[
10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10],
 (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11])
 ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (2
9.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20])
 ~ -ifelse((u(t))[20] > 0, (29.0(u(t))[20] - 29.0(u(t))[19])*(u(t))[20], (2
9.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ 
-ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0
(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -if
else((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(
t))[23] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifels
e((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))
[24] - 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((
u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25
] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t
))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] -
 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[
26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29
.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27]
 > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(
u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 
0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t
))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, 
(29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (29.0 / (1 + t) - 29.0(u(t))[
29])*(u(t))[29])])), Any[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))
[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  Differenti
al(t)((u(t))[20]), Differential(t)((u(t))[21]), Differential(t)((u(t))[22])
, Differential(t)((u(t))[23]), Differential(t)((u(t))[24]), Differential(t)
((u(t))[25]), Differential(t)((u(t))[26]), Differential(t)((u(t))[27]), Dif
ferential(t)((u(t))[28]), Differential(t)((u(t))[29])], ModelingToolkit.Sys
temStructures.SystemStructure(ModelingToolkit.SystemStructures.DiffGraph(Un
ion{Nothing, Int64}[29, 30, 31, 32, 33, 34, 35, 36, 37, 38  …  nothing, not
hing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothin
g], Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, noth
ing, nothing, nothing, nothing, nothing  …  19, 20, 21, 22, 23, 24, 25, 26,
 27, 28]), ModelingToolkit.SystemStructures.DiffGraph(Union{Nothing, Int64}
[nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, no
thing, nothing  …  nothing, nothing, nothing, nothing, nothing, nothing, no
thing, nothing, nothing, nothing], Union{Nothing, Int64}[nothing, nothing, 
nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing  …  
nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, not
hing, nothing]), BipartiteGraph with (28, 56) (𝑠,𝑑)-vertices
   #  src      dst
  1   [1, 29]  [1]
  2   [2, 30]  [2]
  3   [3, 31]  [3]
  4   [4, 32]  [4]
  5   [5, 33]  [5]
  6   [6, 34]  [6]
  7   [7, 35]  [7]
  8   [8, 36]  [8]
  9   [9, 37]  [9]
  ⋮            
 48   ⋅        [20]
 49   ⋅        [21]
 50   ⋅        [22]
 51   ⋅        [23]
 52   ⋅        [24]
 53   ⋅        [25]
 54   ⋅        [26]
 55   ⋅        [27]
 56   ⋅        [28], BipartiteGraph with (30, 58) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    ∅
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    ∅
 55   ⋅    ∅
 56   ⋅    ∅
 57   ⋅    [29]
 58   ⋅    [30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0.0], [Int64[], Int64[]], Symbo
lics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, 29.0((u(t
))[2]^2), (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t)
)[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (
29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -if
else((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[
5] - 29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))
[5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u
(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (2
9.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u
(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7
] - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), D
ifferential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(
t))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential
(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(
t))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))
[10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10]
, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]
) ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (
29.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]
) ~ -ifelse((u(t))[20] > 0, (29.0(u(t))[20] - 29.0(u(t))[19])*(u(t))[20], (
29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~
 -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.
0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -i
felse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u
(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifel
se((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t)
)[24] - 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse(
(u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[2
5] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(
t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] 
- 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))
[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 2
9.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27
] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0
(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] >
 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(
t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0,
 (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (29.0 / (1 + t) - 29.0(u(t))
[29])*(u(t))[29])]))), [0.034482758620689655, 0.06896551724137931, 0.103448
27586206896, 0.13793103448275862, 0.1724137931034483, 0.20689655172413793, 
0.2413793103448276, 0.27586206896551724, 0.3103448275862069, 0.344827586206
8966  …  0.6551724137931034, 0.6896551724137931, 0.7241379310344828, 0.7586
206896551724, 0.7931034482758621, 0.8275862068965517, 0.8620689655172413, 0
.896551724137931, 0.9310344827586207, 0.9655172413793104], (0.0, 20.0), Sci
MLBase.NullParameters(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{()
, Tuple{}}}(), SciMLBase.StandardODEProblem())
 SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, SciML
Base.NullParameters, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, 
ModelingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0xd3f2f961, 0x4d66032b, 0x96185b46, 0x42fdad83, 0x1
de91294)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋a
rg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0xd7ee70f4, 0x65d3a109, 0x37aa49d4, 0x2b03534e, 0x53bc0840)}
}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbo
l, Nothing, ModelingToolkit.var"#472#generated_observed#471"{Bool, Modeling
Toolkit.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}, Ba
se.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.Stan
dardODEProblem}(SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, Model
ingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0xd3f2f961, 0x4d66032b, 0x96185b46, 0x42fdad83, 0x1de912
94)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0xd7ee70f4, 0x65d3a109, 0x37aa49d4, 0x2b03534e, 0x53bc0840)}}, Li
nearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, No
thing, ModelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolk
it.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}(Modeling
Toolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xd3f2f961, 0x4d66032b, 0x96185b46, 0x42fdad83, 0x1de91294)
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋
arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0xd7ee70f4, 0x65d3a109, 0x37aa49d4, 0x2b03534e, 0x53bc0840)}}(Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xd3f2f961
, 0x4d66032b, 0x96185b46, 0x42fdad83, 0x1de91294)}(quote
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[31]" = (+)((+)((+)((/)(3.2, (+)(1, t)), (*)(-0.2, (g
etindex)(ˍ₋arg1, 27))), (*)(-3.0, (getindex)(ˍ₋arg1, 29))), (getindex)(ˍ₋ar
g1, 28))
            var"(u(t))[1]" = (+)((+)((*)(-3.0, (getindex)(ˍ₋arg1, 1)), (*)(
-0.2, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
                (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, 
Val{1}(), Val{(29,)}(), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1), 0)
                            (*)((+)((*)(-29.0, var"(u(t))[1]"), (*)(29.0, (
getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1, 1))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1)), (*)(
29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1)), (*)(
29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 2))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2)), (*)(
29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2)), (*)(
29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 3))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3)), (*)(
29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 3))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3)), (*)(
29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 4))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4)), (*)(
29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 4))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4)), (*)(
29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 5))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5)), (*)(
29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5)), (*)(
29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 6))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6)), (*)(
29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 6))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6)), (*)(
29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 7))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7)), (*)(
29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7)), (*)(
29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 8))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8)), (*)(
29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8)), (*)(
29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 9))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9)), (*)(
29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 9))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9)), (*)(
29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 10))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 10)), (*)
(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 10)), (*)
(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 11))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 11)), (*)
(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 11)), (*)
(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 12))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 12)), (*)
(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 12)), (*)
(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 13))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 13)), (*)
(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 13))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 13)), (*)
(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 14))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 14)), (*)
(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 14)), (*)
(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 15))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 15)), (*)
(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 15)), (*)
(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 16))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 16)), (*)
(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 16)), (*)
(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 17))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 17)), (*)
(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 17)), (*)
(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 18))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 18)), (*)
(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 18))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 18)), (*)
(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 19))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 19)), (*)
(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 19)), (*)
(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 20))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 20)), (*)
(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 20))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 20)), (*)
(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 21))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 21)), (*)
(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 21))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 21)), (*)
(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 22))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 22)), (*)
(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 22)), (*)
(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 23))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 23)), (*)
(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 23))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 23)), (*)
(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 24))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 24)), (*)
(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 24)), (*)
(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 25))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 25)), (*)
(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 25)), (*)
(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 26))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 26)), (*)
(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 26))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 26)), (*)
(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 27))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 27)), (*)
(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 27))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 27)), (*)
(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 28))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 28)), (*)
(29.0, (getindex)(ˍ₋arg1, 29))), (getindex)(ˍ₋arg1, 28))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 29), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 28)), (*)
(29.0, (getindex)(ˍ₋arg1, 29))), (getindex)(ˍ₋arg1, 29))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 29)), (*)
(29.0, var"(u(t))[31]")), (getindex)(ˍ₋arg1, 29))
                        end))
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0xd7ee70f4, 0x65d3a109, 0x37aa49d4, 0x2b03534e, 0x53bc0840)}(quot
e
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[31]" = (+)((+)((+)((/)(3.2, (+)(1, t)), (*)(-0.2, (g
etindex)(ˍ₋arg1, 27))), (*)(-3.0, (getindex)(ˍ₋arg1, 29))), (getindex)(ˍ₋ar
g1, 28))
            var"(u(t))[1]" = (+)((+)((*)(-3.0, (getindex)(ˍ₋arg1, 1)), (*)(
-0.2, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/Symbolics/FGTCH/src/build_function.jl:519 =#
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds
 begin
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1),
 0)
                                    (*)((+)((*)(-29.0, var"(u(t))[1]"), (*)
(29.0, (getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1, 1))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
)), (*)(29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1))
                                end)
                        ˍ₋out[2] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
)), (*)(29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 2))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
)), (*)(29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2))
                                end)
                        ˍ₋out[3] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
)), (*)(29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 3))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3
)), (*)(29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 3))
                                end)
                        ˍ₋out[4] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3
)), (*)(29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 4))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4
)), (*)(29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 4))
                                end)
                        ˍ₋out[5] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4
)), (*)(29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 5))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5
)), (*)(29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5))
                                end)
                        ˍ₋out[6] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5
)), (*)(29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 6))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6
)), (*)(29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 6))
                                end)
                        ˍ₋out[7] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6
)), (*)(29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 7))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7
)), (*)(29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7))
                                end)
                        ˍ₋out[8] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7
)), (*)(29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 8))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8
)), (*)(29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8))
                                end)
                        ˍ₋out[9] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8
)), (*)(29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 9))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9
)), (*)(29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 9))
                                end)
                        ˍ₋out[10] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9
)), (*)(29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 10))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
0)), (*)(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10))
                                end)
                        ˍ₋out[11] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
0)), (*)(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 11))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
1)), (*)(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11))
                                end)
                        ˍ₋out[12] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
1)), (*)(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 12))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
2)), (*)(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12))
                                end)
                        ˍ₋out[13] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
2)), (*)(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 13))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
3)), (*)(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 13))
                                end)
                        ˍ₋out[14] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
3)), (*)(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 14))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
4)), (*)(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14))
                                end)
                        ˍ₋out[15] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
4)), (*)(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 15))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
5)), (*)(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15))
                                end)
                        ˍ₋out[16] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
5)), (*)(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 16))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
6)), (*)(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16))
                                end)
                        ˍ₋out[17] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
6)), (*)(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 17))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
7)), (*)(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17))
                                end)
                        ˍ₋out[18] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
7)), (*)(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 18))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
8)), (*)(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 18))
                                end)
                        ˍ₋out[19] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
8)), (*)(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 19))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
9)), (*)(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19))
                                end)
                        ˍ₋out[20] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
9)), (*)(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 20))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
0)), (*)(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 20))
                                end)
                        ˍ₋out[21] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
0)), (*)(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 21))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
1)), (*)(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 21))
                                end)
                        ˍ₋out[22] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
1)), (*)(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 22))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
2)), (*)(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22))
                                end)
                        ˍ₋out[23] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
2)), (*)(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 23))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
3)), (*)(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 23))
                                end)
                        ˍ₋out[24] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
3)), (*)(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 24))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
4)), (*)(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24))
                                end)
                        ˍ₋out[25] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
4)), (*)(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 25))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
5)), (*)(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25))
                                end)
                        ˍ₋out[26] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
5)), (*)(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 26))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
6)), (*)(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 26))
                                end)
                        ˍ₋out[27] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
6)), (*)(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 27))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
7)), (*)(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 27))
                                end)
                        ˍ₋out[28] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
7)), (*)(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 28))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
8)), (*)(29.0, (getindex)(ˍ₋arg1, 29))), (getindex)(ˍ₋arg1, 28))
                                end)
                        ˍ₋out[29] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 29
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
8)), (*)(29.0, (getindex)(ˍ₋arg1, 29))), (getindex)(ˍ₋arg1, 29))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
9)), (*)(29.0, var"(u(t))[31]")), (getindex)(ˍ₋arg1, 29))
                                end)
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing,
 nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("ge
tindex(u(t), 2)"), Symbol("getindex(u(t), 3)"), Symbol("getindex(u(t), 4)")
, Symbol("getindex(u(t), 5)"), Symbol("getindex(u(t), 6)"), Symbol("getinde
x(u(t), 7)"), Symbol("getindex(u(t), 8)"), Symbol("getindex(u(t), 9)"), Sym
bol("getindex(u(t), 10)"), Symbol("getindex(u(t), 11)")  …  Symbol("getinde
x(u(t), 21)"), Symbol("getindex(u(t), 22)"), Symbol("getindex(u(t), 23)"), 
Symbol("getindex(u(t), 24)"), Symbol("getindex(u(t), 25)"), Symbol("getinde
x(u(t), 26)"), Symbol("getindex(u(t), 27)"), Symbol("getindex(u(t), 28)"), 
Symbol("getindex(u(t), 29)"), Symbol("getindex(u(t), 30)")], :t, nothing, M
odelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolkit.ODESy
stem, Dict{Any, Any}}(false, Core.Box(Symbolics.Equation[(u(t))[31] ~ 3.2 /
 (1 + t) + (u(t))[29] - 0.2(u(t))[28] - 3.0(u(t))[30], (u(t))[1] ~ (u(t))[3
] - 3.0(u(t))[2] - 0.2(u(t))[4]]), ModelingToolkit.ODESystem(Symbolics.Equa
tion[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (29.0(u(t))[2] - 2
9.0(u(t))[1])*(u(t))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differ
ential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2
])*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(t)((
u(t))[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4
], (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~
 -ifelse((u(t))[5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(
t))[6] - 29.0(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u
(t))[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29
.0(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0
, (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7]
)*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t
))[8] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]
), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.
0(u(t))[8])*(u(t))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Differe
ntial(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))
[9])*(u(t))[10], (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differentia
l(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10]
)*(u(t))[11], (29.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differentia
l(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20]
)*(u(t))[21], (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(t
)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(
u(t))[22], (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)((
u(t))[23]) ~ -ifelse((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t
))[23], (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(t
))[24]) ~ -ifelse((u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[
24], (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[
25]) ~ -ifelse((u(t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25]
, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]
) ~ -ifelse((u(t))[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (
29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~
 -ifelse((u(t))[27] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.
0(u(t))[28] - 29.0(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -i
felse((u(t))[28] > 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u
(t))[29] - 29.0(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifel
se((u(t))[29] > 0, (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t)
)[30] - 29.0(u(t))[29])*(u(t))[29]), Differential(t)((u(t))[30]) ~ -ifelse(
(u(t))[30] > 0, (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[30], (29.0(u(t))[3
1] - 29.0(u(t))[30])*(u(t))[30])], t, SymbolicUtils.Term{Real, Nothing}[(u(
t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (
u(t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u
(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t)
)[30]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))
[31] ~ 3.2 / (1 + t) + (u(t))[29] - 0.2(u(t))[28] - 3.0(u(t))[30], (u(t))[1
] ~ (u(t))[3] - 3.0(u(t))[2] - 0.2(u(t))[4]], Base.RefValue{Vector{Symbolic
s.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0
, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValu
e{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue
{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys1, Mode
lingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.5344827586206896, (
u(t))[18] => 0.5689655172413793, (u(t))[8] => 0.22413793103448276, (u(t))[1
0] => 0.29310344827586204, (u(t))[27] => 0.8793103448275862, (u(t))[28] => 
0.9137931034482759, (u(t))[2] => 0.017241379310344827, (u(t))[24] => 0.7758
620689655172, (u(t))[30] => 0.9827586206896551, (u(t))[21] => 0.67241379310
34483…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallb
ack[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[], Symbol
ics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLines
.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.E
dgeAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAligne
dGrid, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDESystem, 
Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.D
iscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}(MethodOfLines.VariableMap
(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x
], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tupl
e{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils
.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{
Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{
SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real
, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicU
tils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicU
tils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(
u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6
], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[22], (u(t))[23], 
(u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(
t))[30], (u(t))[31]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{Data
Type, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, Base.Twice
Precision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dict{Symbol
icUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64,
 Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => -
0.017241379310344827:0.034482758620689655:1.0172413793103448), Dict{Symboli
cUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Float64}(x => 0.034482
758620689655), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, A
ny}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIn
dices((30,))), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, A
ny}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIn
dices((31,)))), MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAligned
Grid, MethodOfLines.ScalarizedDiscretization}(Dict{Symbolics.Num, Int64}(x 
=> 29), t, 2, MethodOfLines.UpwindScheme(1), MethodOfLines.EdgeAlignedGrid(
), true, false, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol
, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(
Symbolics.Equation[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, 
x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 
/ (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..2
0.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbol
ics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, An
y[], :pdesys1, nothing), false, Base.RefValue{Any}(nothing)), ModelingToolk
it.SystemStructures.TearingState{ModelingToolkit.ODESystem}(ModelingToolkit
.ODESystem(Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2
] > 0, (29.0(u(t))[2] - 29.0(u(t))[1])*(u(t))[2], (29.0(u(t))[3] - 29.0(u(t
))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (29.
0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t
))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u(t))[4] 
- 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[4]), Dif
ferential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t))[5] - 29.0(u(t)
)[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5]), Differential(t
)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t)
)[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]
) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7], (29.0
(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse
((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(t))[9] -
 29.0(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] 
> 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))[10] - 29.0(u(t)
)[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (29
.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[11] - 29.0(u(t))[10])
*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (29.0(u
(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))[12] - 29.0(u(t))[11])*(u
(t))[11])  …  Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (29.0(u
(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t))[22] - 29.0(u(t))[21])*(u
(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (29.0(u(t)
)[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t)
)[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (29.0(u(t))[2
3] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[2
3]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (29.0(u(t))[24] 
- 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[24])
, Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (29.0(u(t))[25] - 2
9.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[25]), D
ifferential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.0(u(t))[26] - 29.0
(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[26]), Diff
erential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u(t))[27] - 29.0(u(
t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[27]), Differe
ntial(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t))[28] - 29.0(u(t))
[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[28]), Differenti
al(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[29] - 29.0(u(t))[28
])*(u(t))[29], (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[29]), Differential(
t)((u(t))[30]) ~ -ifelse((u(t))[30] > 0, (29.0(u(t))[30] - 29.0(u(t))[29])*
(u(t))[30], (29.0(u(t))[31] - 29.0(u(t))[30])*(u(t))[30])], t, SymbolicUtil
s.Term{Real, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6]
, (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[21], (
u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t
))[28], (u(t))[29], (u(t))[30]], Any[], Dict{Any, Any}(:u => u(t)), Any[], 
Symbolics.Equation[(u(t))[31] ~ 3.2 / (1 + t) + (u(t))[29] - 0.2(u(t))[28] 
- 3.0(u(t))[30], (u(t))[1] ~ (u(t))[3] - 3.0(u(t))[2] - 0.2(u(t))[4]], Base
.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matri
x{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(un
def, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(und
ef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(unde
f, 0, 0)), :pdesys1, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17]
 => 0.5344827586206896, (u(t))[18] => 0.5689655172413793, (u(t))[8] => 0.22
413793103448276, (u(t))[10] => 0.29310344827586204, (u(t))[27] => 0.8793103
448275862, (u(t))[28] => 0.9137931034482759, (u(t))[2] => 0.017241379310344
827, (u(t))[24] => 0.7758620689655172, (u(t))[30] => 0.9827586206896551, (u
(t))[21] => 0.6724137931034483…), nothing, nothing, nothing, ModelingToolki
t.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Sym
bolics.Equation[], Symbolics.Equation[])], ModelingToolkit.SymbolicDiscrete
Callback[], MethodOfLines.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSp
ace{1, 1, MethodOfLines.EdgeAlignedGrid}, MethodOfLines.MOLFiniteDifference
{MethodOfLines.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscretization}, Mo
delingToolkit.PDESystem, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscre
tization}(MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}(
MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.Immuta
bleDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableD
ict{DataType, Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 2
0.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, 
Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t
, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Di
ct{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 
1), Dict{Int64, SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}
(1 => x)), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}
, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t)
)[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  … 
 (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u
(t))[28], (u(t))[29], (u(t))[30], (u(t))[31]]), Dict{SymbolicUtils.Sym{Real
, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePreci
sion{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.03448275862
0689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any
}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision
{Float64}, Int64}}(x => -0.017241379310344827:0.034482758620689655:1.017241
3793103448), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}
}, Float64}(x => 0.034482758620689655), Dict{SymbolicUtils.Term{Real, Base.
ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}
}}(u(t, x) => CartesianIndices((30,))), Dict{SymbolicUtils.Term{Real, Base.
ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}
}}(u(t, x) => CartesianIndices((31,)))), MethodOfLines.MOLFiniteDifference{
MethodOfLines.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscretization}(Dict
{Symbolics.Num, Int64}(x => 29), t, 2, MethodOfLines.UpwindScheme(1), Metho
dOfLines.EdgeAlignedGrid(), true, false, MethodOfLines.ScalarizedDiscretiza
tion(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), M
odelingToolkit.PDESystem(Symbolics.Equation[Differential(x)(u(t, x))*u(t, x
) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, u(t, 0.0
) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.V
arDomainPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Sy
mbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict
{Any, Any}(), nothing, Any[], :pdesys1, nothing), false, Base.RefValue{Any}
(nothing)), nothing, ModelingToolkit.Substitutions(Symbolics.Equation[(u(t)
)[31] ~ 3.2 / (1 + t) + (u(t))[29] - 0.2(u(t))[28] - 3.0(u(t))[30], (u(t))[
1] ~ (u(t))[3] - 3.0(u(t))[2] - 0.2(u(t))[4]], [Int64[], Int64[]], Symbolic
s.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (116.0(u(t))
[2] + 5.800000000000001(u(t))[4] - 29.0(u(t))[3])*(u(t))[2], (29.0(u(t))[3]
 - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3
] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t
))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (29.
0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t
))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t))[5] 
- 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5]), Dif
ferential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[6] - 29.0(u(t)
)[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), Differential(t
)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t)
)[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]
) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], (29.0
(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse
((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))[10] 
- 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[1
0] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[11] - 29.0
(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] >
 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))[12] - 29.0(u(
t))[11])*(u(t))[11])  …  Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] >
 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t))[22] - 29.0(u(
t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0,
 (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[23] - 29.0(u(t))
[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (2
9.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24] - 29.0(u(t))[23
])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (29.0
(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t))[24])*
(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (29.0(u(
t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] - 29.0(u(t))[25])*(u(
t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.0(u(t))
[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))
[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u(t))[27
] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[27
]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t))[28] -
 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[28]),
 Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[29] - 29
.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[29]), Di
fferential(t)((u(t))[30]) ~ -ifelse((u(t))[30] > 0, (29.0(u(t))[30] - 29.0(
u(t))[29])*(u(t))[30], (92.80000000000001 / (1 + t) + 29.0(u(t))[29] - 5.80
0000000000001(u(t))[28] - 116.0(u(t))[30])*(u(t))[30])])), Any[(u(t))[2], (
u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9],
 (u(t))[10], (u(t))[11]  …  Differential(t)((u(t))[21]), Differential(t)((u
(t))[22]), Differential(t)((u(t))[23]), Differential(t)((u(t))[24]), Differ
ential(t)((u(t))[25]), Differential(t)((u(t))[26]), Differential(t)((u(t))[
27]), Differential(t)((u(t))[28]), Differential(t)((u(t))[29]), Differentia
l(t)((u(t))[30])], ModelingToolkit.SystemStructures.SystemStructure(Modelin
gToolkit.SystemStructures.DiffGraph(Union{Nothing, Int64}[30, 31, 32, 33, 3
4, 35, 36, 37, 38, 39  …  nothing, nothing, nothing, nothing, nothing, noth
ing, nothing, nothing, nothing, nothing], Union{Nothing, Int64}[nothing, no
thing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothi
ng  …  20, 21, 22, 23, 24, 25, 26, 27, 28, 29]), ModelingToolkit.SystemStru
ctures.DiffGraph(Union{Nothing, Int64}[nothing, nothing, nothing, nothing, 
nothing, nothing, nothing, nothing, nothing, nothing  …  nothing, nothing, 
nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing], Un
ion{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, n
othing, nothing, nothing, nothing  …  nothing, nothing, nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing]), BipartiteGraph with 
(29, 58) (𝑠,𝑑)-vertices
   #  src      dst
  1   [1, 30]  [1]
  2   [2, 31]  [2]
  3   [3, 32]  [3]
  4   [4, 33]  [4]
  5   [5, 34]  [5]
  6   [6, 35]  [6]
  7   [7, 36]  [7]
  8   [8, 37]  [8]
  9   [9, 38]  [9]
  ⋮            
 50   ⋅        [21]
 51   ⋅        [22]
 52   ⋅        [23]
 53   ⋅        [24]
 54   ⋅        [25]
 55   ⋅        [26]
 56   ⋅        [27]
 57   ⋅        [28]
 58   ⋅        [29], BipartiteGraph with (31, 60) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    ∅
 55   ⋅    ∅
 56   ⋅    [31]
 57   ⋅    [31]
 58   ⋅    [31]
 59   ⋅    [30]
 60   ⋅    [31]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[31] ~ 3.2 / (1 + t) + (u(t))[29] - 0.2(u(t))[28] - 3.0(u(t))[30], (u
(t))[1] ~ (u(t))[3] - 3.0(u(t))[2] - 0.2(u(t))[4]], [Int64[], Int64[]], Sym
bolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (116.0(
u(t))[2] + 5.800000000000001(u(t))[4] - 29.0(u(t))[3])*(u(t))[2], (29.0(u(t
))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(
t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 29.
0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0,
 (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4])
*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t)
)[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5])
, Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[6] - 29.0
(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), Different
ial(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*
(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Differential(t)((u(t
))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], 
(29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -i
felse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))
[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(
t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[11] -
 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[
11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))[12] - 29
.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[21]) ~ -ifelse((u(t))[
21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t))[22] - 29
.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22]
 > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[23] - 29.0(
u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 
0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24] - 29.0(u(t
))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, 
(29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t))[
24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (29
.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] - 29.0(u(t))[25]
)*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.0(
u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u(t))[26])*(
u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u(t
))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t
))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t))[
28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[
28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[29]
 - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[29]
), Differential(t)((u(t))[30]) ~ -ifelse((u(t))[30] > 0, (29.0(u(t))[30] - 
29.0(u(t))[29])*(u(t))[30], (92.80000000000001 / (1 + t) + 29.0(u(t))[29] -
 5.800000000000001(u(t))[28] - 116.0(u(t))[30])*(u(t))[30])])), Dict{Any, A
ny}()), nothing, ModelingToolkit.ODESystem(Symbolics.Equation[Differential(
t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (29.0(u(t))[2] - 29.0(u(t))[1])*(u(t
))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3
]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.
0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifels
e((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] 
- 29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5]
 > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t)
)[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0
(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t)
)[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] -
 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Diff
erential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))
[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(t)
((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))
[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10
]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (
29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~
 -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.
0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[21]) ~
 -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.
0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -i
felse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u
(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifel
se((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t)
)[24] - 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse(
(u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[2
5] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(
t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] 
- 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))
[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 2
9.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27
] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0
(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] >
 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(
t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0,
 (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30] - 29.0(u(t))
[29])*(u(t))[29]), Differential(t)((u(t))[30]) ~ -ifelse((u(t))[30] > 0, (2
9.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[30], (29.0(u(t))[31] - 29.0(u(t))[30
])*(u(t))[30])], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(t))[3],
 (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[1
0], (u(t))[11]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[2
5], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30]], Any[], Dic
t{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[31] ~ 3.2 / (1 + 
t) + (u(t))[29] - 0.2(u(t))[28] - 3.0(u(t))[30], (u(t))[1] ~ (u(t))[3] - 3.
0(u(t))[2] - 0.2(u(t))[4]], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.
Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefVal
ue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics
.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.
Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys1, ModelingToolkit.ODESys
tem[], Dict{Any, Any}((u(t))[17] => 0.5344827586206896, (u(t))[18] => 0.568
9655172413793, (u(t))[8] => 0.22413793103448276, (u(t))[10] => 0.2931034482
7586204, (u(t))[27] => 0.8793103448275862, (u(t))[28] => 0.9137931034482759
, (u(t))[2] => 0.017241379310344827, (u(t))[24] => 0.7758620689655172, (u(t
))[30] => 0.9827586206896551, (u(t))[21] => 0.6724137931034483…), nothing, 
nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolki
t.SymbolicContinuousCallback(Symbolics.Equation[], Symbolics.Equation[])], 
ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{t
rue}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}, M
ethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLin
es.ScalarizedDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{Any}
, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1,
 MethodOfLines.EdgeAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], Sym
bolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{Symboli
cUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Float64
}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils
.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.Immutab
leDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnTy
pe{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDi
ct{DataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Bas
e.ImmutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Ba
se.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))
[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t
))[8], (u(t))[9], (u(t))[10]  …  (u(t))[22], (u(t))[23], (u(t))[24], (u(t))
[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30], (u(t))[31
]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepR
angeLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}
, Int64}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, 
Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecisi
on{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => -0.0172413793103448
27:0.034482758620689655:1.0172413793103448), Dict{SymbolicUtils.Sym{Real, B
ase.ImmutableDict{DataType, Any}}, Float64}(x => 0.034482758620689655), Dic
t{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianInd
ices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dic
t{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianInd
ices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((31,)))), Me
thodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLine
s.ScalarizedDiscretization}(Dict{Symbolics.Num, Int64}(x => 29), t, 2, Meth
odOfLines.UpwindScheme(1), MethodOfLines.EdgeAlignedGrid(), true, false, Me
thodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{}
, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equation
[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolic
s.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + t)], Symbol
ics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolics.Va
rDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x)], 
SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[], :pdesys1, not
hing), false, Base.RefValue{Any}(nothing)), ModelingToolkit.SystemStructure
s.TearingState{ModelingToolkit.ODESystem}(ModelingToolkit.ODESystem(Symboli
cs.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (29.0(u(t))
[2] - 29.0(u(t))[1])*(u(t))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]),
 Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(
u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differenti
al(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(
u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t)
)[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (
29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -if
else((u(t))[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[
7] - 29.0(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))
[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u
(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (2
9.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u
(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9
] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), 
Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.
0(u(t))[9])*(u(t))[10], (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Diff
erential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(
t))[10])*(u(t))[11], (29.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Diff
erential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(
t))[20])*(u(t))[21], (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differe
ntial(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))
[21])*(u(t))[22], (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Differenti
al(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22
])*(u(t))[23], (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[23]), Differential(
t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*
(u(t))[24], (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)(
(u(t))[25]) ~ -ifelse((u(t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(
t))[25], (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u(
t))[26]) ~ -ifelse((u(t))[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))
[26], (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t))
[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27
], (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28
]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], 
(29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) 
~ -ifelse((u(t))[29] > 0, (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (29
.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[29]), Differential(t)((u(t))[30]) ~ -
ifelse((u(t))[30] > 0, (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[30], (29.0(
u(t))[31] - 29.0(u(t))[30])*(u(t))[30])], t, SymbolicUtils.Term{Real, Nothi
ng}[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t)
)[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[21], (u(t))[22], (u(t))[
23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29]
, (u(t))[30]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation
[(u(t))[31] ~ 3.2 / (1 + t) + (u(t))[29] - 0.2(u(t))[28] - 3.0(u(t))[30], (
u(t))[1] ~ (u(t))[3] - 3.0(u(t))[2] - 0.2(u(t))[4]], Base.RefValue{Vector{S
ymbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(u
ndef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.
RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.R
efValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys
1, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.534482758620
6896, (u(t))[18] => 0.5689655172413793, (u(t))[8] => 0.22413793103448276, (
u(t))[10] => 0.29310344827586204, (u(t))[27] => 0.8793103448275862, (u(t))[
28] => 0.9137931034482759, (u(t))[2] => 0.017241379310344827, (u(t))[24] =>
 0.7758620689655172, (u(t))[30] => 0.9827586206896551, (u(t))[21] => 0.6724
137931034483…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuo
usCallback[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[],
 Symbolics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], Method
OfLines.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOf
Lines.EdgeAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.Edg
eAlignedGrid, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDES
ystem, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodOf
Lines.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}(MethodOfLines.Vari
ableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, 
Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}
}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{Symbol
icUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUti
ls.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUti
ls.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.S
ym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, Sy
mbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{Sy
mbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbolics
.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (
u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[22], (u(t)
)[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[2
9], (u(t))[30], (u(t))[31]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDi
ct{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, Bas
e.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dict
{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{F
loat64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}}
(x => -0.017241379310344827:0.034482758620689655:1.0172413793103448), Dict{
SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Float64}(x => 0
.034482758620689655), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{Data
Type, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => Cart
esianIndices((30,))), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{Data
Type, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => Cart
esianIndices((31,)))), MethodOfLines.MOLFiniteDifference{MethodOfLines.Edge
AlignedGrid, MethodOfLines.ScalarizedDiscretization}(Dict{Symbolics.Num, In
t64}(x => 29), t, 2, MethodOfLines.UpwindScheme(1), MethodOfLines.EdgeAlign
edGrid(), true, false, MethodOfLines.ScalarizedDiscretization(), Base.Pairs
{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDE
System(Symbolics.Equation[Differential(x)(u(t, x))*u(t, x) + Differential(t
)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0)
 ~ 1.0 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t,
 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x],
 Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), noth
ing, Any[], :pdesys1, nothing), false, Base.RefValue{Any}(nothing)), nothin
g, ModelingToolkit.Substitutions(Symbolics.Equation[(u(t))[31] ~ 3.2 / (1 +
 t) + (u(t))[29] - 0.2(u(t))[28] - 3.0(u(t))[30], (u(t))[1] ~ (u(t))[3] - 3
.0(u(t))[2] - 0.2(u(t))[4]], [Int64[], Int64[]], Symbolics.Equation[Differe
ntial(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (116.0(u(t))[2] + 5.8000000000
00001(u(t))[4] - 29.0(u(t))[3])*(u(t))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*
(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))
[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]),
 Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(
u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[4]), Differenti
al(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(
u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5]), Differential(t)((u(t)
)[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (
29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -if
else((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[
8] - 29.0(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))
[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u
(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (2
9.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(
u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t)
)[10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))
[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11
] - 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11
])  …  Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (29.0(u(t))[21
] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21
]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (29.0(u(t))[22] -
 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[22]),
 Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (29.0(u(t))[23] - 29
.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[23]), Di
fferential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (29.0(u(t))[24] - 29.0(
u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[24]), Diffe
rential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t
))[24])*(u(t))[25], (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[25]), Differen
tial(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[
25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[26]), Differentia
l(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u(t))[27] - 29.0(u(t))[26]
)*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[27]), Differential(t
)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(
u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[28]), Differential(t)((
u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t
))[29], (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[29]), Differential(t)((u(t
))[30]) ~ -ifelse((u(t))[30] > 0, (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[
30], (92.80000000000001 / (1 + t) + 29.0(u(t))[29] - 5.800000000000001(u(t)
)[28] - 116.0(u(t))[30])*(u(t))[30])])), Any[(u(t))[2], (u(t))[3], (u(t))[4
], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t)
)[11]  …  Differential(t)((u(t))[21]), Differential(t)((u(t))[22]), Differe
ntial(t)((u(t))[23]), Differential(t)((u(t))[24]), Differential(t)((u(t))[2
5]), Differential(t)((u(t))[26]), Differential(t)((u(t))[27]), Differential
(t)((u(t))[28]), Differential(t)((u(t))[29]), Differential(t)((u(t))[30])],
 ModelingToolkit.SystemStructures.SystemStructure(ModelingToolkit.SystemStr
uctures.DiffGraph(Union{Nothing, Int64}[30, 31, 32, 33, 34, 35, 36, 37, 38,
 39  …  nothing, nothing, nothing, nothing, nothing, nothing, nothing, noth
ing, nothing, nothing], Union{Nothing, Int64}[nothing, nothing, nothing, no
thing, nothing, nothing, nothing, nothing, nothing, nothing  …  20, 21, 22,
 23, 24, 25, 26, 27, 28, 29]), ModelingToolkit.SystemStructures.DiffGraph(U
nion{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, 
nothing, nothing, nothing, nothing  …  nothing, nothing, nothing, nothing, 
nothing, nothing, nothing, nothing, nothing, nothing], Union{Nothing, Int64
}[nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, n
othing, nothing  …  nothing, nothing, nothing, nothing, nothing, nothing, n
othing, nothing, nothing, nothing]), BipartiteGraph with (29, 58) (𝑠,𝑑)-ver
tices
   #  src      dst
  1   [1, 30]  [1]
  2   [2, 31]  [2]
  3   [3, 32]  [3]
  4   [4, 33]  [4]
  5   [5, 34]  [5]
  6   [6, 35]  [6]
  7   [7, 36]  [7]
  8   [8, 37]  [8]
  9   [9, 38]  [9]
  ⋮            
 50   ⋅        [21]
 51   ⋅        [22]
 52   ⋅        [23]
 53   ⋅        [24]
 54   ⋅        [25]
 55   ⋅        [26]
 56   ⋅        [27]
 57   ⋅        [28]
 58   ⋅        [29], BipartiteGraph with (31, 60) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    ∅
 55   ⋅    ∅
 56   ⋅    [31]
 57   ⋅    [31]
 58   ⋅    [31]
 59   ⋅    [30]
 60   ⋅    [31]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[31] ~ 3.2 / (1 + t) + (u(t))[29] - 0.2(u(t))[28] - 3.0(u(t))[30], (u
(t))[1] ~ (u(t))[3] - 3.0(u(t))[2] - 0.2(u(t))[4]], [Int64[], Int64[]], Sym
bolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (116.0(
u(t))[2] + 5.800000000000001(u(t))[4] - 29.0(u(t))[3])*(u(t))[2], (29.0(u(t
))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(
t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 29.
0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0,
 (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4])
*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t)
)[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5])
, Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[6] - 29.0
(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), Different
ial(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*
(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Differential(t)((u(t
))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], 
(29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -i
felse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))
[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(
t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[11] -
 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[
11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))[12] - 29
.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[21]) ~ -ifelse((u(t))[
21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t))[22] - 29
.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22]
 > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[23] - 29.0(
u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 
0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24] - 29.0(u(t
))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, 
(29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t))[
24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (29
.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] - 29.0(u(t))[25]
)*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.0(
u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u(t))[26])*(
u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u(t
))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t
))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t))[
28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[
28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[29]
 - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[29]
), Differential(t)((u(t))[30]) ~ -ifelse((u(t))[30] > 0, (29.0(u(t))[30] - 
29.0(u(t))[29])*(u(t))[30], (92.80000000000001 / (1 + t) + 29.0(u(t))[29] -
 5.800000000000001(u(t))[28] - 116.0(u(t))[30])*(u(t))[30])]))), [0.0172413
79310344827, 0.05172413793103448, 0.08620689655172414, 0.1206896551724138, 
0.15517241379310345, 0.1896551724137931, 0.22413793103448276, 0.25862068965
517243, 0.29310344827586204, 0.3275862068965517  …  0.6724137931034483, 0.7
068965517241379, 0.7413793103448276, 0.7758620689655172, 0.8103448275862069
, 0.8448275862068966, 0.8793103448275862, 0.9137931034482759, 0.94827586206
89655, 0.9827586206896551], (0.0, 20.0), SciMLBase.NullParameters(), Base.P
airs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.Standa
rdODEProblem())
 SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, SciML
Base.NullParameters, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, 
ModelingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0xadd7896b, 0x0645bd3e, 0x1c0e0acb, 0xce5dff01, 0xc
d528cf1)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋a
rg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0xc1a8d017, 0x0dacd9a9, 0x07424051, 0xdf86a51e, 0x6c901e68)}
}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbo
l, Nothing, ModelingToolkit.var"#472#generated_observed#471"{Bool, Modeling
Toolkit.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}, Ba
se.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.Stan
dardODEProblem}(SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, Model
ingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0xadd7896b, 0x0645bd3e, 0x1c0e0acb, 0xce5dff01, 0xcd528c
f1)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0xc1a8d017, 0x0dacd9a9, 0x07424051, 0xdf86a51e, 0x6c901e68)}}, Li
nearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, No
thing, ModelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolk
it.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}(Modeling
Toolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xadd7896b, 0x0645bd3e, 0x1c0e0acb, 0xce5dff01, 0xcd528cf1)
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋
arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0xc1a8d017, 0x0dacd9a9, 0x07424051, 0xdf86a51e, 0x6c901e68)}}(Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xadd7896b
, 0x0645bd3e, 0x1c0e0acb, 0xce5dff01, 0xcd528cf1)}(quote
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (*)(-1, (/)(-1.0, (+)(1, t)))
            var"(u(t))[1]" = 0.0
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
                (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, 
Val{1}(), Val{(28,)}(), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1), 0)
                            (*)((+)((*)(-725.4739742821658, var"(u(t))[1]")
, (*)(725.4739742821658, (getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1, 1))
                        else
                            (*)((+)((*)(-725.4739742821658, (getindex)(ˍ₋ar
g1, 1)), (*)(725.4739742821658, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1,
 1))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2), 0)
                            (*)((+)((*)(-466.80720968681806, (getindex)(ˍ₋a
rg1, 1)), (*)(466.80720968681806, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg
1, 2))
                        else
                            (*)((+)((*)(-466.80720968681806, (getindex)(ˍ₋a
rg1, 2)), (*)(466.80720968681806, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg
1, 2))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3), 0)
                            (*)((+)((*)(-300.9587037173515, (getindex)(ˍ₋ar
g1, 2)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1,
 3))
                        else
                            (*)((+)((*)(-300.9587037173515, (getindex)(ˍ₋ar
g1, 3)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1,
 3))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4), 0)
                            (*)((+)((*)(-194.6254318817387, (getindex)(ˍ₋ar
g1, 3)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1,
 4))
                        else
                            (*)((+)((*)(-194.6254318817387, (getindex)(ˍ₋ar
g1, 4)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1,
 4))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5), 0)
                            (*)((+)((*)(-126.45525998037883, (getindex)(ˍ₋a
rg1, 4)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg
1, 5))
                        else
                            (*)((+)((*)(-126.45525998037883, (getindex)(ˍ₋a
rg1, 5)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg
1, 5))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6), 0)
                            (*)((+)((*)(-82.75935258368779, (getindex)(ˍ₋ar
g1, 5)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1,
 6))
                        else
                            (*)((+)((*)(-82.75935258368779, (getindex)(ˍ₋ar
g1, 6)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1,
 6))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7), 0)
                            (*)((+)((*)(-54.76340168250905, (getindex)(ˍ₋ar
g1, 6)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1,
 7))
                        else
                            (*)((+)((*)(-54.76340168250905, (getindex)(ˍ₋ar
g1, 7)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1,
 7))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8), 0)
                            (*)((+)((*)(-36.84571154259183, (getindex)(ˍ₋ar
g1, 7)), (*)(36.84571154259183, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1,
 8))
                        else
                            (*)((+)((*)(-36.84571154259183, (getindex)(ˍ₋ar
g1, 8)), (*)(36.84571154259183, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1,
 8))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9), 0)
                            (*)((+)((*)(-25.40834035503878, (getindex)(ˍ₋ar
g1, 8)), (*)(25.40834035503878, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1,
 9))
                        else
                            (*)((+)((*)(-25.40834035503878, (getindex)(ˍ₋ar
g1, 9)), (*)(25.40834035503878, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1
, 9))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10), 0)
                            (*)((+)((*)(-18.15461953934479, (getindex)(ˍ₋ar
g1, 9)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1
, 10))
                        else
                            (*)((+)((*)(-18.15461953934479, (getindex)(ˍ₋ar
g1, 10)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg
1, 10))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11), 0)
                            (*)((+)((*)(-13.627973767492774, (getindex)(ˍ₋a
rg1, 10)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋a
rg1, 11))
                        else
                            (*)((+)((*)(-13.627973767492774, (getindex)(ˍ₋a
rg1, 11)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋a
rg1, 11))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12), 0)
                            (*)((+)((*)(-10.9194349777832, (getindex)(ˍ₋arg
1, 11)), (*)(10.9194349777832, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1,
 12))
                        else
                            (*)((+)((*)(-10.9194349777832, (getindex)(ˍ₋arg
1, 12)), (*)(10.9194349777832, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1,
 12))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13), 0)
                            (*)((+)((*)(-9.485118055761118, (getindex)(ˍ₋ar
g1, 12)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg
1, 13))
                        else
                            (*)((+)((*)(-9.485118055761118, (getindex)(ˍ₋ar
g1, 13)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg
1, 13))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14), 0)
                            (*)((+)((*)(-9.037006589676247, (getindex)(ˍ₋ar
g1, 13)), (*)(9.037006589676247, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg
1, 14))
                        else
                            (*)((+)((*)(-9.037006589676247, (getindex)(ˍ₋ar
g1, 14)), (*)(9.037006589676247, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg
1, 14))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15), 0)
                            (*)((+)((*)(-9.485118055761118, (getindex)(ˍ₋ar
g1, 14)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg
1, 15))
                        else
                            (*)((+)((*)(-9.485118055761118, (getindex)(ˍ₋ar
g1, 15)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg
1, 15))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16), 0)
                            (*)((+)((*)(-10.919434977783192, (getindex)(ˍ₋a
rg1, 15)), (*)(10.919434977783192, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋a
rg1, 16))
                        else
                            (*)((+)((*)(-10.919434977783192, (getindex)(ˍ₋a
rg1, 16)), (*)(10.919434977783192, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋a
rg1, 16))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17), 0)
                            (*)((+)((*)(-13.627973767492774, (getindex)(ˍ₋a
rg1, 16)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋a
rg1, 17))
                        else
                            (*)((+)((*)(-13.627973767492774, (getindex)(ˍ₋a
rg1, 17)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋a
rg1, 17))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18), 0)
                            (*)((+)((*)(-18.15461953934479, (getindex)(ˍ₋ar
g1, 17)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg
1, 18))
                        else
                            (*)((+)((*)(-18.15461953934479, (getindex)(ˍ₋ar
g1, 18)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg
1, 18))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19), 0)
                            (*)((+)((*)(-25.408340355038746, (getindex)(ˍ₋a
rg1, 18)), (*)(25.408340355038746, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋a
rg1, 19))
                        else
                            (*)((+)((*)(-25.408340355038746, (getindex)(ˍ₋a
rg1, 19)), (*)(25.408340355038746, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋a
rg1, 19))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20), 0)
                            (*)((+)((*)(-36.84571154259191, (getindex)(ˍ₋ar
g1, 19)), (*)(36.84571154259191, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg
1, 20))
                        else
                            (*)((+)((*)(-36.84571154259191, (getindex)(ˍ₋ar
g1, 20)), (*)(36.84571154259191, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg
1, 20))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21), 0)
                            (*)((+)((*)(-54.76340168250905, (getindex)(ˍ₋ar
g1, 20)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg
1, 21))
                        else
                            (*)((+)((*)(-54.76340168250905, (getindex)(ˍ₋ar
g1, 21)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg
1, 21))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22), 0)
                            (*)((+)((*)(-82.75935258368779, (getindex)(ˍ₋ar
g1, 21)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg
1, 22))
                        else
                            (*)((+)((*)(-82.75935258368779, (getindex)(ˍ₋ar
g1, 22)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg
1, 22))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23), 0)
                            (*)((+)((*)(-126.45525998037883, (getindex)(ˍ₋a
rg1, 22)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋a
rg1, 23))
                        else
                            (*)((+)((*)(-126.45525998037883, (getindex)(ˍ₋a
rg1, 23)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋a
rg1, 23))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24), 0)
                            (*)((+)((*)(-194.6254318817387, (getindex)(ˍ₋ar
g1, 23)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg
1, 24))
                        else
                            (*)((+)((*)(-194.6254318817387, (getindex)(ˍ₋ar
g1, 24)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg
1, 24))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25), 0)
                            (*)((+)((*)(-300.9587037173515, (getindex)(ˍ₋ar
g1, 24)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg
1, 25))
                        else
                            (*)((+)((*)(-300.9587037173515, (getindex)(ˍ₋ar
g1, 25)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg
1, 25))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26), 0)
                            (*)((+)((*)(-466.80720968680595, (getindex)(ˍ₋a
rg1, 25)), (*)(466.80720968680595, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋a
rg1, 26))
                        else
                            (*)((+)((*)(-466.80720968680595, (getindex)(ˍ₋a
rg1, 26)), (*)(466.80720968680595, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋a
rg1, 26))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27), 0)
                            (*)((+)((*)(-725.4739742821951, (getindex)(ˍ₋ar
g1, 26)), (*)(725.4739742821951, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg
1, 27))
                        else
                            (*)((+)((*)(-725.4739742821951, (getindex)(ˍ₋ar
g1, 27)), (*)(725.4739742821951, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg
1, 27))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28), 0)
                            (*)((+)((*)(-404.4287934927362, (getindex)(ˍ₋ar
g1, 27)), (*)(404.4287934927362, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg
1, 28))
                        else
                            (*)((+)((*)(-404.4287934927362, (getindex)(ˍ₋ar
g1, 28)), (*)(404.4287934927362, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 28))
                        end))
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0xc1a8d017, 0x0dacd9a9, 0x07424051, 0xdf86a51e, 0x6c901e68)}(quot
e
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (*)(-1, (/)(-1.0, (+)(1, t)))
            var"(u(t))[1]" = 0.0
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/Symbolics/FGTCH/src/build_function.jl:519 =#
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds
 begin
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1),
 0)
                                    (*)((+)((*)(-725.4739742821658, var"(u(
t))[1]"), (*)(725.4739742821658, (getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1
, 1))
                                else
                                    (*)((+)((*)(-725.4739742821658, (getind
ex)(ˍ₋arg1, 1)), (*)(725.4739742821658, (getindex)(ˍ₋arg1, 2))), (getindex)
(ˍ₋arg1, 1))
                                end)
                        ˍ₋out[2] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2),
 0)
                                    (*)((+)((*)(-466.80720968681806, (getin
dex)(ˍ₋arg1, 1)), (*)(466.80720968681806, (getindex)(ˍ₋arg1, 2))), (getinde
x)(ˍ₋arg1, 2))
                                else
                                    (*)((+)((*)(-466.80720968681806, (getin
dex)(ˍ₋arg1, 2)), (*)(466.80720968681806, (getindex)(ˍ₋arg1, 3))), (getinde
x)(ˍ₋arg1, 2))
                                end)
                        ˍ₋out[3] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3),
 0)
                                    (*)((+)((*)(-300.9587037173515, (getind
ex)(ˍ₋arg1, 2)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 3))), (getindex)
(ˍ₋arg1, 3))
                                else
                                    (*)((+)((*)(-300.9587037173515, (getind
ex)(ˍ₋arg1, 3)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 4))), (getindex)
(ˍ₋arg1, 3))
                                end)
                        ˍ₋out[4] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4),
 0)
                                    (*)((+)((*)(-194.6254318817387, (getind
ex)(ˍ₋arg1, 3)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 4))), (getindex)
(ˍ₋arg1, 4))
                                else
                                    (*)((+)((*)(-194.6254318817387, (getind
ex)(ˍ₋arg1, 4)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 5))), (getindex)
(ˍ₋arg1, 4))
                                end)
                        ˍ₋out[5] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5),
 0)
                                    (*)((+)((*)(-126.45525998037883, (getin
dex)(ˍ₋arg1, 4)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 5))), (getinde
x)(ˍ₋arg1, 5))
                                else
                                    (*)((+)((*)(-126.45525998037883, (getin
dex)(ˍ₋arg1, 5)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 6))), (getinde
x)(ˍ₋arg1, 5))
                                end)
                        ˍ₋out[6] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6),
 0)
                                    (*)((+)((*)(-82.75935258368779, (getind
ex)(ˍ₋arg1, 5)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 6))), (getindex)
(ˍ₋arg1, 6))
                                else
                                    (*)((+)((*)(-82.75935258368779, (getind
ex)(ˍ₋arg1, 6)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 7))), (getindex)
(ˍ₋arg1, 6))
                                end)
                        ˍ₋out[7] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7),
 0)
                                    (*)((+)((*)(-54.76340168250905, (getind
ex)(ˍ₋arg1, 6)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 7))), (getindex)
(ˍ₋arg1, 7))
                                else
                                    (*)((+)((*)(-54.76340168250905, (getind
ex)(ˍ₋arg1, 7)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 8))), (getindex)
(ˍ₋arg1, 7))
                                end)
                        ˍ₋out[8] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8),
 0)
                                    (*)((+)((*)(-36.84571154259183, (getind
ex)(ˍ₋arg1, 7)), (*)(36.84571154259183, (getindex)(ˍ₋arg1, 8))), (getindex)
(ˍ₋arg1, 8))
                                else
                                    (*)((+)((*)(-36.84571154259183, (getind
ex)(ˍ₋arg1, 8)), (*)(36.84571154259183, (getindex)(ˍ₋arg1, 9))), (getindex)
(ˍ₋arg1, 8))
                                end)
                        ˍ₋out[9] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9),
 0)
                                    (*)((+)((*)(-25.40834035503878, (getind
ex)(ˍ₋arg1, 8)), (*)(25.40834035503878, (getindex)(ˍ₋arg1, 9))), (getindex)
(ˍ₋arg1, 9))
                                else
                                    (*)((+)((*)(-25.40834035503878, (getind
ex)(ˍ₋arg1, 9)), (*)(25.40834035503878, (getindex)(ˍ₋arg1, 10))), (getindex
)(ˍ₋arg1, 9))
                                end)
                        ˍ₋out[10] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10
), 0)
                                    (*)((+)((*)(-18.15461953934479, (getind
ex)(ˍ₋arg1, 9)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 10))), (getindex
)(ˍ₋arg1, 10))
                                else
                                    (*)((+)((*)(-18.15461953934479, (getind
ex)(ˍ₋arg1, 10)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 11))), (getinde
x)(ˍ₋arg1, 10))
                                end)
                        ˍ₋out[11] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11
), 0)
                                    (*)((+)((*)(-13.627973767492774, (getin
dex)(ˍ₋arg1, 10)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 11))), (getin
dex)(ˍ₋arg1, 11))
                                else
                                    (*)((+)((*)(-13.627973767492774, (getin
dex)(ˍ₋arg1, 11)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 12))), (getin
dex)(ˍ₋arg1, 11))
                                end)
                        ˍ₋out[12] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12
), 0)
                                    (*)((+)((*)(-10.9194349777832, (getinde
x)(ˍ₋arg1, 11)), (*)(10.9194349777832, (getindex)(ˍ₋arg1, 12))), (getindex)
(ˍ₋arg1, 12))
                                else
                                    (*)((+)((*)(-10.9194349777832, (getinde
x)(ˍ₋arg1, 12)), (*)(10.9194349777832, (getindex)(ˍ₋arg1, 13))), (getindex)
(ˍ₋arg1, 12))
                                end)
                        ˍ₋out[13] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13
), 0)
                                    (*)((+)((*)(-9.485118055761118, (getind
ex)(ˍ₋arg1, 12)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 13))), (getinde
x)(ˍ₋arg1, 13))
                                else
                                    (*)((+)((*)(-9.485118055761118, (getind
ex)(ˍ₋arg1, 13)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 14))), (getinde
x)(ˍ₋arg1, 13))
                                end)
                        ˍ₋out[14] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14
), 0)
                                    (*)((+)((*)(-9.037006589676247, (getind
ex)(ˍ₋arg1, 13)), (*)(9.037006589676247, (getindex)(ˍ₋arg1, 14))), (getinde
x)(ˍ₋arg1, 14))
                                else
                                    (*)((+)((*)(-9.037006589676247, (getind
ex)(ˍ₋arg1, 14)), (*)(9.037006589676247, (getindex)(ˍ₋arg1, 15))), (getinde
x)(ˍ₋arg1, 14))
                                end)
                        ˍ₋out[15] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15
), 0)
                                    (*)((+)((*)(-9.485118055761118, (getind
ex)(ˍ₋arg1, 14)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 15))), (getinde
x)(ˍ₋arg1, 15))
                                else
                                    (*)((+)((*)(-9.485118055761118, (getind
ex)(ˍ₋arg1, 15)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 16))), (getinde
x)(ˍ₋arg1, 15))
                                end)
                        ˍ₋out[16] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16
), 0)
                                    (*)((+)((*)(-10.919434977783192, (getin
dex)(ˍ₋arg1, 15)), (*)(10.919434977783192, (getindex)(ˍ₋arg1, 16))), (getin
dex)(ˍ₋arg1, 16))
                                else
                                    (*)((+)((*)(-10.919434977783192, (getin
dex)(ˍ₋arg1, 16)), (*)(10.919434977783192, (getindex)(ˍ₋arg1, 17))), (getin
dex)(ˍ₋arg1, 16))
                                end)
                        ˍ₋out[17] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17
), 0)
                                    (*)((+)((*)(-13.627973767492774, (getin
dex)(ˍ₋arg1, 16)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 17))), (getin
dex)(ˍ₋arg1, 17))
                                else
                                    (*)((+)((*)(-13.627973767492774, (getin
dex)(ˍ₋arg1, 17)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 18))), (getin
dex)(ˍ₋arg1, 17))
                                end)
                        ˍ₋out[18] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18
), 0)
                                    (*)((+)((*)(-18.15461953934479, (getind
ex)(ˍ₋arg1, 17)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 18))), (getinde
x)(ˍ₋arg1, 18))
                                else
                                    (*)((+)((*)(-18.15461953934479, (getind
ex)(ˍ₋arg1, 18)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 19))), (getinde
x)(ˍ₋arg1, 18))
                                end)
                        ˍ₋out[19] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19
), 0)
                                    (*)((+)((*)(-25.408340355038746, (getin
dex)(ˍ₋arg1, 18)), (*)(25.408340355038746, (getindex)(ˍ₋arg1, 19))), (getin
dex)(ˍ₋arg1, 19))
                                else
                                    (*)((+)((*)(-25.408340355038746, (getin
dex)(ˍ₋arg1, 19)), (*)(25.408340355038746, (getindex)(ˍ₋arg1, 20))), (getin
dex)(ˍ₋arg1, 19))
                                end)
                        ˍ₋out[20] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20
), 0)
                                    (*)((+)((*)(-36.84571154259191, (getind
ex)(ˍ₋arg1, 19)), (*)(36.84571154259191, (getindex)(ˍ₋arg1, 20))), (getinde
x)(ˍ₋arg1, 20))
                                else
                                    (*)((+)((*)(-36.84571154259191, (getind
ex)(ˍ₋arg1, 20)), (*)(36.84571154259191, (getindex)(ˍ₋arg1, 21))), (getinde
x)(ˍ₋arg1, 20))
                                end)
                        ˍ₋out[21] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21
), 0)
                                    (*)((+)((*)(-54.76340168250905, (getind
ex)(ˍ₋arg1, 20)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 21))), (getinde
x)(ˍ₋arg1, 21))
                                else
                                    (*)((+)((*)(-54.76340168250905, (getind
ex)(ˍ₋arg1, 21)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 22))), (getinde
x)(ˍ₋arg1, 21))
                                end)
                        ˍ₋out[22] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22
), 0)
                                    (*)((+)((*)(-82.75935258368779, (getind
ex)(ˍ₋arg1, 21)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 22))), (getinde
x)(ˍ₋arg1, 22))
                                else
                                    (*)((+)((*)(-82.75935258368779, (getind
ex)(ˍ₋arg1, 22)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 23))), (getinde
x)(ˍ₋arg1, 22))
                                end)
                        ˍ₋out[23] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23
), 0)
                                    (*)((+)((*)(-126.45525998037883, (getin
dex)(ˍ₋arg1, 22)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 23))), (getin
dex)(ˍ₋arg1, 23))
                                else
                                    (*)((+)((*)(-126.45525998037883, (getin
dex)(ˍ₋arg1, 23)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 24))), (getin
dex)(ˍ₋arg1, 23))
                                end)
                        ˍ₋out[24] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24
), 0)
                                    (*)((+)((*)(-194.6254318817387, (getind
ex)(ˍ₋arg1, 23)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 24))), (getinde
x)(ˍ₋arg1, 24))
                                else
                                    (*)((+)((*)(-194.6254318817387, (getind
ex)(ˍ₋arg1, 24)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 25))), (getinde
x)(ˍ₋arg1, 24))
                                end)
                        ˍ₋out[25] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25
), 0)
                                    (*)((+)((*)(-300.9587037173515, (getind
ex)(ˍ₋arg1, 24)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 25))), (getinde
x)(ˍ₋arg1, 25))
                                else
                                    (*)((+)((*)(-300.9587037173515, (getind
ex)(ˍ₋arg1, 25)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 26))), (getinde
x)(ˍ₋arg1, 25))
                                end)
                        ˍ₋out[26] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26
), 0)
                                    (*)((+)((*)(-466.80720968680595, (getin
dex)(ˍ₋arg1, 25)), (*)(466.80720968680595, (getindex)(ˍ₋arg1, 26))), (getin
dex)(ˍ₋arg1, 26))
                                else
                                    (*)((+)((*)(-466.80720968680595, (getin
dex)(ˍ₋arg1, 26)), (*)(466.80720968680595, (getindex)(ˍ₋arg1, 27))), (getin
dex)(ˍ₋arg1, 26))
                                end)
                        ˍ₋out[27] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27
), 0)
                                    (*)((+)((*)(-725.4739742821951, (getind
ex)(ˍ₋arg1, 26)), (*)(725.4739742821951, (getindex)(ˍ₋arg1, 27))), (getinde
x)(ˍ₋arg1, 27))
                                else
                                    (*)((+)((*)(-725.4739742821951, (getind
ex)(ˍ₋arg1, 27)), (*)(725.4739742821951, (getindex)(ˍ₋arg1, 28))), (getinde
x)(ˍ₋arg1, 27))
                                end)
                        ˍ₋out[28] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28
), 0)
                                    (*)((+)((*)(-404.4287934927362, (getind
ex)(ˍ₋arg1, 27)), (*)(404.4287934927362, (getindex)(ˍ₋arg1, 28))), (getinde
x)(ˍ₋arg1, 28))
                                else
                                    (*)((+)((*)(-404.4287934927362, (getind
ex)(ˍ₋arg1, 28)), (*)(404.4287934927362, var"(u(t))[30]")), (getindex)(ˍ₋ar
g1, 28))
                                end)
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing,
 nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("ge
tindex(u(t), 2)"), Symbol("getindex(u(t), 3)"), Symbol("getindex(u(t), 4)")
, Symbol("getindex(u(t), 5)"), Symbol("getindex(u(t), 6)"), Symbol("getinde
x(u(t), 7)"), Symbol("getindex(u(t), 8)"), Symbol("getindex(u(t), 9)"), Sym
bol("getindex(u(t), 10)"), Symbol("getindex(u(t), 11)")  …  Symbol("getinde
x(u(t), 20)"), Symbol("getindex(u(t), 21)"), Symbol("getindex(u(t), 22)"), 
Symbol("getindex(u(t), 23)"), Symbol("getindex(u(t), 24)"), Symbol("getinde
x(u(t), 25)"), Symbol("getindex(u(t), 26)"), Symbol("getindex(u(t), 27)"), 
Symbol("getindex(u(t), 28)"), Symbol("getindex(u(t), 29)")], :t, nothing, M
odelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolkit.ODESy
stem, Dict{Any, Any}}(false, Core.Box(Symbolics.Equation[(u(t))[30] ~ -(-1.
0 / (1 + t)), (u(t))[1] ~ 0.0]), ModelingToolkit.ODESystem(Symbolics.Equati
on[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (725.4739742821658(u
(t))[2] - 725.4739742821658(u(t))[1])*(u(t))[2], (725.4739742821658(u(t))[3
] - 725.4739742821658(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -i
felse((u(t))[3] > 0, (466.80720968681806(u(t))[3] - 466.80720968681806(u(t)
)[2])*(u(t))[3], (466.80720968681806(u(t))[4] - 466.80720968681806(u(t))[3]
)*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (300.9587
037173515(u(t))[4] - 300.9587037173515(u(t))[3])*(u(t))[4], (300.9587037173
515(u(t))[5] - 300.9587037173515(u(t))[4])*(u(t))[4]), Differential(t)((u(t
))[5]) ~ -ifelse((u(t))[5] > 0, (194.6254318817387(u(t))[5] - 194.625431881
7387(u(t))[4])*(u(t))[5], (194.6254318817387(u(t))[6] - 194.6254318817387(u
(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (1
26.45525998037883(u(t))[6] - 126.45525998037883(u(t))[5])*(u(t))[6], (126.4
5525998037883(u(t))[7] - 126.45525998037883(u(t))[6])*(u(t))[6]), Different
ial(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (82.75935258368779(u(t))[7] - 82
.75935258368779(u(t))[6])*(u(t))[7], (82.75935258368779(u(t))[8] - 82.75935
258368779(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))
[8] > 0, (54.76340168250905(u(t))[8] - 54.76340168250905(u(t))[7])*(u(t))[8
], (54.76340168250905(u(t))[9] - 54.76340168250905(u(t))[8])*(u(t))[8]), Di
fferential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (36.84571154259183(u(t))[
9] - 36.84571154259183(u(t))[8])*(u(t))[9], (36.84571154259183(u(t))[10] - 
36.84571154259183(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifel
se((u(t))[10] > 0, (25.40834035503878(u(t))[10] - 25.40834035503878(u(t))[9
])*(u(t))[10], (25.40834035503878(u(t))[11] - 25.40834035503878(u(t))[10])*
(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.1546
1953934479(u(t))[11] - 18.15461953934479(u(t))[10])*(u(t))[11], (18.1546195
3934479(u(t))[12] - 18.15461953934479(u(t))[11])*(u(t))[11])  …  Differenti
al(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.408340355038746(u(t))[20] -
 25.408340355038746(u(t))[19])*(u(t))[20], (25.408340355038746(u(t))[21] - 
25.408340355038746(u(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -i
felse((u(t))[21] > 0, (36.84571154259191(u(t))[21] - 36.84571154259191(u(t)
)[20])*(u(t))[21], (36.84571154259191(u(t))[22] - 36.84571154259191(u(t))[2
1])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (54.
76340168250905(u(t))[22] - 54.76340168250905(u(t))[21])*(u(t))[22], (54.763
40168250905(u(t))[23] - 54.76340168250905(u(t))[22])*(u(t))[22]), Different
ial(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (82.75935258368779(u(t))[23] -
 82.75935258368779(u(t))[22])*(u(t))[23], (82.75935258368779(u(t))[24] - 82
.75935258368779(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifel
se((u(t))[24] > 0, (126.45525998037883(u(t))[24] - 126.45525998037883(u(t))
[23])*(u(t))[24], (126.45525998037883(u(t))[25] - 126.45525998037883(u(t))[
24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (19
4.6254318817387(u(t))[25] - 194.6254318817387(u(t))[24])*(u(t))[25], (194.6
254318817387(u(t))[26] - 194.6254318817387(u(t))[25])*(u(t))[25]), Differen
tial(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (300.9587037173515(u(t))[26] 
- 300.9587037173515(u(t))[25])*(u(t))[26], (300.9587037173515(u(t))[27] - 3
00.9587037173515(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ife
lse((u(t))[27] > 0, (466.80720968680595(u(t))[27] - 466.80720968680595(u(t)
)[26])*(u(t))[27], (466.80720968680595(u(t))[28] - 466.80720968680595(u(t))
[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (7
25.4739742821951(u(t))[28] - 725.4739742821951(u(t))[27])*(u(t))[28], (725.
4739742821951(u(t))[29] - 725.4739742821951(u(t))[28])*(u(t))[28]), Differe
ntial(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (404.4287934927362(u(t))[29]
 - 404.4287934927362(u(t))[28])*(u(t))[29], (404.4287934927362(u(t))[30] - 
404.4287934927362(u(t))[29])*(u(t))[29])], t, SymbolicUtils.Term{Real, Noth
ing}[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t
))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[20], (u(t))[21], (u(t))
[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28
], (u(t))[29]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equatio
n[(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0.0], Base.RefValue{Vector{Sy
mbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(un
def, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.R
efValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.Re
fValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys1
, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.6607563687658
171, (u(t))[18] => 0.7523361988609284, (u(t))[8] => 0.03444519566621118, (u
(t))[10] => 0.07984576661461423, (u(t))[27] => 0.9940067556575177, (u(t))[2
8] => 0.9961489676440698, (u(t))[2] => 0.002472623156634768, (u(t))[24] => 
0.9776380308064558, (u(t))[30] => 1.0, (u(t))[21] => 0.9201542333853858…), 
nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[Model
ingToolkit.SymbolicContinuousCallback(Symbolics.Equation[], Symbolics.Equat
ion[])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetad
ata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlig
nedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid
, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDESystem, Base.
RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.Discre
teSpace{1, 1, MethodOfLines.CenterAlignedGrid}(MethodOfLines.VariableMap(An
y[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], 
t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{F
loat64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sy
m{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Rea
l, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{Sym
bolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, B
ase.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtil
s.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtil
s.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t
, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], 
(u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(
t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))
[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataTyp
e, Any}}, Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.0038510323559
302617, 0.0059932443424822734, 0.009315959345066682, 0.014454034006386562, 
0.022361969193544162, 0.03444519566621118, 0.05270556608289023, 0.079845766
61461423  …  0.9201542333853858, 0.9472944339171098, 0.9655548043337888, 0.
9776380308064558, 0.9855459659936134, 0.9906840406549333, 0.994006755657517
7, 0.9961489676440698, 0.9975273768433652, 1.0]), Dict{SymbolicUtils.Sym{Re
al, Base.ImmutableDict{DataType, Any}}, Vector{Float64}}(x => [0.0, 0.00247
2623156634768, 0.0038510323559302617, 0.0059932443424822734, 0.009315959345
066682, 0.014454034006386562, 0.022361969193544162, 0.03444519566621118, 0.
05270556608289023, 0.07984576661461423  …  0.9201542333853858, 0.9472944339
171098, 0.9655548043337888, 0.9776380308064558, 0.9855459659936134, 0.99068
40406549333, 0.9940067556575177, 0.9961489676440698, 0.9975273768433652, 1.
0]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Vecto
r{Float64}}(x => [0.002472623156634768]), Dict{SymbolicUtils.Term{Real, Bas
e.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64
}}}}(u(t, x) => CartesianIndices((30,))), Dict{SymbolicUtils.Term{Real, Bas
e.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64
}}}}(u(t, x) => CartesianIndices((30,)))), MethodOfLines.MOLFiniteDifferenc
e{MethodOfLines.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretization}(
Dict{Symbolics.Num, Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.003
8510323559302617, 0.0059932443424822734, 0.009315959345066682, 0.0144540340
06386562, 0.022361969193544162, 0.03444519566621118, 0.05270556608289023, 0
.07984576661461423  …  0.9201542333853858, 0.9472944339171098, 0.9655548043
337888, 0.9776380308064558, 0.9855459659936134, 0.9906840406549333, 0.99400
67556575177, 0.9961489676440698, 0.9975273768433652, 1.0]), t, 2, MethodOfL
ines.UpwindScheme(1), MethodOfLines.CenterAlignedGrid(), true, false, Metho
dOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{}, N
amedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equation[Di
fferential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.E
quation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + t)], Symbolics
.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolics.VarDo
mainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x)], Sci
MLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[], :pdesys1, nothin
g), false, Base.RefValue{Any}(nothing)), ModelingToolkit.SystemStructures.T
earingState{ModelingToolkit.ODESystem}(ModelingToolkit.ODESystem(Symbolics.
Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (725.473974282
1658(u(t))[2] - 725.4739742821658(u(t))[1])*(u(t))[2], (725.4739742821658(u
(t))[3] - 725.4739742821658(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]
) ~ -ifelse((u(t))[3] > 0, (466.80720968681806(u(t))[3] - 466.8072096868180
6(u(t))[2])*(u(t))[3], (466.80720968681806(u(t))[4] - 466.80720968681806(u(
t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (30
0.9587037173515(u(t))[4] - 300.9587037173515(u(t))[3])*(u(t))[4], (300.9587
037173515(u(t))[5] - 300.9587037173515(u(t))[4])*(u(t))[4]), Differential(t
)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (194.6254318817387(u(t))[5] - 194.625
4318817387(u(t))[4])*(u(t))[5], (194.6254318817387(u(t))[6] - 194.625431881
7387(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] >
 0, (126.45525998037883(u(t))[6] - 126.45525998037883(u(t))[5])*(u(t))[6], 
(126.45525998037883(u(t))[7] - 126.45525998037883(u(t))[6])*(u(t))[6]), Dif
ferential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (82.75935258368779(u(t))[7
] - 82.75935258368779(u(t))[6])*(u(t))[7], (82.75935258368779(u(t))[8] - 82
.75935258368779(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse(
(u(t))[8] > 0, (54.76340168250905(u(t))[8] - 54.76340168250905(u(t))[7])*(u
(t))[8], (54.76340168250905(u(t))[9] - 54.76340168250905(u(t))[8])*(u(t))[8
]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (36.84571154259183(
u(t))[9] - 36.84571154259183(u(t))[8])*(u(t))[9], (36.84571154259183(u(t))[
10] - 36.84571154259183(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~
 -ifelse((u(t))[10] > 0, (25.40834035503878(u(t))[10] - 25.40834035503878(u
(t))[9])*(u(t))[10], (25.40834035503878(u(t))[11] - 25.40834035503878(u(t))
[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (1
8.15461953934479(u(t))[11] - 18.15461953934479(u(t))[10])*(u(t))[11], (18.1
5461953934479(u(t))[12] - 18.15461953934479(u(t))[11])*(u(t))[11])  …  Diff
erential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.408340355038746(u(t))
[20] - 25.408340355038746(u(t))[19])*(u(t))[20], (25.408340355038746(u(t))[
21] - 25.408340355038746(u(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]
) ~ -ifelse((u(t))[21] > 0, (36.84571154259191(u(t))[21] - 36.8457115425919
1(u(t))[20])*(u(t))[21], (36.84571154259191(u(t))[22] - 36.84571154259191(u
(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0
, (54.76340168250905(u(t))[22] - 54.76340168250905(u(t))[21])*(u(t))[22], (
54.76340168250905(u(t))[23] - 54.76340168250905(u(t))[22])*(u(t))[22]), Dif
ferential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (82.75935258368779(u(t))
[23] - 82.75935258368779(u(t))[22])*(u(t))[23], (82.75935258368779(u(t))[24
] - 82.75935258368779(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~
 -ifelse((u(t))[24] > 0, (126.45525998037883(u(t))[24] - 126.45525998037883
(u(t))[23])*(u(t))[24], (126.45525998037883(u(t))[25] - 126.45525998037883(
u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 
0, (194.6254318817387(u(t))[25] - 194.6254318817387(u(t))[24])*(u(t))[25], 
(194.6254318817387(u(t))[26] - 194.6254318817387(u(t))[25])*(u(t))[25]), Di
fferential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (300.9587037173515(u(t)
)[26] - 300.9587037173515(u(t))[25])*(u(t))[26], (300.9587037173515(u(t))[2
7] - 300.9587037173515(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) 
~ -ifelse((u(t))[27] > 0, (466.80720968680595(u(t))[27] - 466.8072096868059
5(u(t))[26])*(u(t))[27], (466.80720968680595(u(t))[28] - 466.80720968680595
(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] >
 0, (725.4739742821951(u(t))[28] - 725.4739742821951(u(t))[27])*(u(t))[28],
 (725.4739742821951(u(t))[29] - 725.4739742821951(u(t))[28])*(u(t))[28]), D
ifferential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (404.4287934927362(u(t
))[29] - 404.4287934927362(u(t))[28])*(u(t))[29], (404.4287934927362(u(t))[
30] - 404.4287934927362(u(t))[29])*(u(t))[29])], t, SymbolicUtils.Term{Real
, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7]
, (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[20], (u(t))[21], 
(u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(
t))[28], (u(t))[29]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.E
quation[(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0.0], Base.RefValue{Vec
tor{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.N
um}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), 
Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), B
ase.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :p
desys1, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.6607563
687658171, (u(t))[18] => 0.7523361988609284, (u(t))[8] => 0.034445195666211
18, (u(t))[10] => 0.07984576661461423, (u(t))[27] => 0.9940067556575177, (u
(t))[28] => 0.9961489676440698, (u(t))[2] => 0.002472623156634768, (u(t))[2
4] => 0.9776380308064558, (u(t))[30] => 1.0, (u(t))[21] => 0.92015423338538
58…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback
[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[], Symbolics
.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MO
LMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.Cent
erAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.CenterAlign
edGrid, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDESystem,
 Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.
DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}(MethodOfLines.Variable
Map(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}
}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, T
uple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUt
ils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.S
ym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.S
ym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{R
eal, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, Symbol
icUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{Symbol
icUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num
}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t)
)[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22
], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], 
(u(t))[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{D
ataType, Any}}, Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.0038510
323559302617, 0.0059932443424822734, 0.009315959345066682, 0.01445403400638
6562, 0.022361969193544162, 0.03444519566621118, 0.05270556608289023, 0.079
84576661461423  …  0.9201542333853858, 0.9472944339171098, 0.96555480433378
88, 0.9776380308064558, 0.9855459659936134, 0.9906840406549333, 0.994006755
6575177, 0.9961489676440698, 0.9975273768433652, 1.0]), Dict{SymbolicUtils.
Sym{Real, Base.ImmutableDict{DataType, Any}}, Vector{Float64}}(x => [0.0, 0
.002472623156634768, 0.0038510323559302617, 0.0059932443424822734, 0.009315
959345066682, 0.014454034006386562, 0.022361969193544162, 0.034445195666211
18, 0.05270556608289023, 0.07984576661461423  …  0.9201542333853858, 0.9472
944339171098, 0.9655548043337888, 0.9776380308064558, 0.9855459659936134, 0
.9906840406549333, 0.9940067556575177, 0.9961489676440698, 0.99752737684336
52, 1.0]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}},
 Vector{Float64}}(x => [0.002472623156634768]), Dict{SymbolicUtils.Term{Rea
l, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo
{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{SymbolicUtils.Term{Rea
l, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo
{Int64}}}}(u(t, x) => CartesianIndices((30,)))), MethodOfLines.MOLFiniteDif
ference{MethodOfLines.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretiza
tion}(Dict{Symbolics.Num, Vector{Float64}}(x => [0.0, 0.002472623156634768,
 0.0038510323559302617, 0.0059932443424822734, 0.009315959345066682, 0.0144
54034006386562, 0.022361969193544162, 0.03444519566621118, 0.05270556608289
023, 0.07984576661461423  …  0.9201542333853858, 0.9472944339171098, 0.9655
548043337888, 0.9776380308064558, 0.9855459659936134, 0.9906840406549333, 0
.9940067556575177, 0.9961489676440698, 0.9975273768433652, 1.0]), t, 2, Met
hodOfLines.UpwindScheme(1), MethodOfLines.CenterAlignedGrid(), true, false,
 MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tupl
e{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equat
ion[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbo
lics.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + t)], Sym
bolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolics
.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x)
], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[], :pdesys1, 
nothing), false, Base.RefValue{Any}(nothing)), nothing, ModelingToolkit.Sub
stitutions(Symbolics.Equation[(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0
.0], [Int64[], Int64[]], Symbolics.Equation[Differential(t)((u(t))[2]) ~ -i
felse((u(t))[2] > 0, 725.4739742821658((u(t))[2]^2), (725.4739742821658(u(t
))[3] - 725.4739742821658(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) 
~ -ifelse((u(t))[3] > 0, (466.80720968681806(u(t))[3] - 466.80720968681806(
u(t))[2])*(u(t))[3], (466.80720968681806(u(t))[4] - 466.80720968681806(u(t)
)[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (300.
9587037173515(u(t))[4] - 300.9587037173515(u(t))[3])*(u(t))[4], (300.958703
7173515(u(t))[5] - 300.9587037173515(u(t))[4])*(u(t))[4]), Differential(t)(
(u(t))[5]) ~ -ifelse((u(t))[5] > 0, (194.6254318817387(u(t))[5] - 194.62543
18817387(u(t))[4])*(u(t))[5], (194.6254318817387(u(t))[6] - 194.62543188173
87(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0
, (126.45525998037883(u(t))[6] - 126.45525998037883(u(t))[5])*(u(t))[6], (1
26.45525998037883(u(t))[7] - 126.45525998037883(u(t))[6])*(u(t))[6]), Diffe
rential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (82.75935258368779(u(t))[7] 
- 82.75935258368779(u(t))[6])*(u(t))[7], (82.75935258368779(u(t))[8] - 82.7
5935258368779(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u
(t))[8] > 0, (54.76340168250905(u(t))[8] - 54.76340168250905(u(t))[7])*(u(t
))[8], (54.76340168250905(u(t))[9] - 54.76340168250905(u(t))[8])*(u(t))[8])
, Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (36.84571154259183(u(
t))[9] - 36.84571154259183(u(t))[8])*(u(t))[9], (36.84571154259183(u(t))[10
] - 36.84571154259183(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -
ifelse((u(t))[10] > 0, (25.40834035503878(u(t))[10] - 25.40834035503878(u(t
))[9])*(u(t))[10], (25.40834035503878(u(t))[11] - 25.40834035503878(u(t))[1
0])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.
15461953934479(u(t))[11] - 18.15461953934479(u(t))[10])*(u(t))[11], (18.154
61953934479(u(t))[12] - 18.15461953934479(u(t))[11])*(u(t))[11])  …  Differ
ential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.408340355038746(u(t))[2
0] - 25.408340355038746(u(t))[19])*(u(t))[20], (25.408340355038746(u(t))[21
] - 25.408340355038746(u(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) 
~ -ifelse((u(t))[21] > 0, (36.84571154259191(u(t))[21] - 36.84571154259191(
u(t))[20])*(u(t))[21], (36.84571154259191(u(t))[22] - 36.84571154259191(u(t
))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, 
(54.76340168250905(u(t))[22] - 54.76340168250905(u(t))[21])*(u(t))[22], (54
.76340168250905(u(t))[23] - 54.76340168250905(u(t))[22])*(u(t))[22]), Diffe
rential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (82.75935258368779(u(t))[2
3] - 82.75935258368779(u(t))[22])*(u(t))[23], (82.75935258368779(u(t))[24] 
- 82.75935258368779(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -
ifelse((u(t))[24] > 0, (126.45525998037883(u(t))[24] - 126.45525998037883(u
(t))[23])*(u(t))[24], (126.45525998037883(u(t))[25] - 126.45525998037883(u(
t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0,
 (194.6254318817387(u(t))[25] - 194.6254318817387(u(t))[24])*(u(t))[25], (1
94.6254318817387(u(t))[26] - 194.6254318817387(u(t))[25])*(u(t))[25]), Diff
erential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (300.9587037173515(u(t))[
26] - 300.9587037173515(u(t))[25])*(u(t))[26], (300.9587037173515(u(t))[27]
 - 300.9587037173515(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ 
-ifelse((u(t))[27] > 0, (466.80720968680595(u(t))[27] - 466.80720968680595(
u(t))[26])*(u(t))[27], (466.80720968680595(u(t))[28] - 466.80720968680595(u
(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0
, (725.4739742821951(u(t))[28] - 725.4739742821951(u(t))[27])*(u(t))[28], (
725.4739742821951(u(t))[29] - 725.4739742821951(u(t))[28])*(u(t))[28]), Dif
ferential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (404.4287934927362(u(t))
[29] - 404.4287934927362(u(t))[28])*(u(t))[29], (404.4287934927362 / (1 + t
) - 404.4287934927362(u(t))[29])*(u(t))[29])])), Any[(u(t))[2], (u(t))[3], 
(u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10
], (u(t))[11]  …  Differential(t)((u(t))[20]), Differential(t)((u(t))[21]),
 Differential(t)((u(t))[22]), Differential(t)((u(t))[23]), Differential(t)(
(u(t))[24]), Differential(t)((u(t))[25]), Differential(t)((u(t))[26]), Diff
erential(t)((u(t))[27]), Differential(t)((u(t))[28]), Differential(t)((u(t)
)[29])], ModelingToolkit.SystemStructures.SystemStructure(ModelingToolkit.S
ystemStructures.DiffGraph(Union{Nothing, Int64}[29, 30, 31, 32, 33, 34, 35,
 36, 37, 38  …  nothing, nothing, nothing, nothing, nothing, nothing, nothi
ng, nothing, nothing, nothing], Union{Nothing, Int64}[nothing, nothing, not
hing, nothing, nothing, nothing, nothing, nothing, nothing, nothing  …  19,
 20, 21, 22, 23, 24, 25, 26, 27, 28]), ModelingToolkit.SystemStructures.Dif
fGraph(Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, n
othing, nothing, nothing, nothing, nothing  …  nothing, nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing, nothing], Union{Nothin
g, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, nothing, no
thing, nothing, nothing  …  nothing, nothing, nothing, nothing, nothing, no
thing, nothing, nothing, nothing, nothing]), BipartiteGraph with (28, 56) (
𝑠,𝑑)-vertices
   #  src      dst
  1   [1, 29]  [1]
  2   [2, 30]  [2]
  3   [3, 31]  [3]
  4   [4, 32]  [4]
  5   [5, 33]  [5]
  6   [6, 34]  [6]
  7   [7, 35]  [7]
  8   [8, 36]  [8]
  9   [9, 37]  [9]
  ⋮            
 48   ⋅        [20]
 49   ⋅        [21]
 50   ⋅        [22]
 51   ⋅        [23]
 52   ⋅        [24]
 53   ⋅        [25]
 54   ⋅        [26]
 55   ⋅        [27]
 56   ⋅        [28], BipartiteGraph with (30, 58) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    ∅
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    ∅
 55   ⋅    ∅
 56   ⋅    ∅
 57   ⋅    [29]
 58   ⋅    [30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0.0], [Int64[], Int64[]], Symbo
lics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, 725.47397
42821658((u(t))[2]^2), (725.4739742821658(u(t))[3] - 725.4739742821658(u(t)
)[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (466.
80720968681806(u(t))[3] - 466.80720968681806(u(t))[2])*(u(t))[3], (466.8072
0968681806(u(t))[4] - 466.80720968681806(u(t))[3])*(u(t))[3]), Differential
(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (300.9587037173515(u(t))[4] - 300.9
587037173515(u(t))[3])*(u(t))[4], (300.9587037173515(u(t))[5] - 300.9587037
173515(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5]
 > 0, (194.6254318817387(u(t))[5] - 194.6254318817387(u(t))[4])*(u(t))[5], 
(194.6254318817387(u(t))[6] - 194.6254318817387(u(t))[5])*(u(t))[5]), Diffe
rential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (126.45525998037883(u(t))[6]
 - 126.45525998037883(u(t))[5])*(u(t))[6], (126.45525998037883(u(t))[7] - 1
26.45525998037883(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifels
e((u(t))[7] > 0, (82.75935258368779(u(t))[7] - 82.75935258368779(u(t))[6])*
(u(t))[7], (82.75935258368779(u(t))[8] - 82.75935258368779(u(t))[7])*(u(t))
[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (54.7634016825090
5(u(t))[8] - 54.76340168250905(u(t))[7])*(u(t))[8], (54.76340168250905(u(t)
)[9] - 54.76340168250905(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~
 -ifelse((u(t))[9] > 0, (36.84571154259183(u(t))[9] - 36.84571154259183(u(t
))[8])*(u(t))[9], (36.84571154259183(u(t))[10] - 36.84571154259183(u(t))[9]
)*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.408
34035503878(u(t))[10] - 25.40834035503878(u(t))[9])*(u(t))[10], (25.4083403
5503878(u(t))[11] - 25.40834035503878(u(t))[10])*(u(t))[10]), Differential(
t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.15461953934479(u(t))[11] - 18.
15461953934479(u(t))[10])*(u(t))[11], (18.15461953934479(u(t))[12] - 18.154
61953934479(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifels
e((u(t))[20] > 0, (25.408340355038746(u(t))[20] - 25.408340355038746(u(t))[
19])*(u(t))[20], (25.408340355038746(u(t))[21] - 25.408340355038746(u(t))[2
0])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (36.
84571154259191(u(t))[21] - 36.84571154259191(u(t))[20])*(u(t))[21], (36.845
71154259191(u(t))[22] - 36.84571154259191(u(t))[21])*(u(t))[21]), Different
ial(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (54.76340168250905(u(t))[22] -
 54.76340168250905(u(t))[21])*(u(t))[22], (54.76340168250905(u(t))[23] - 54
.76340168250905(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifel
se((u(t))[23] > 0, (82.75935258368779(u(t))[23] - 82.75935258368779(u(t))[2
2])*(u(t))[23], (82.75935258368779(u(t))[24] - 82.75935258368779(u(t))[23])
*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (126.45
525998037883(u(t))[24] - 126.45525998037883(u(t))[23])*(u(t))[24], (126.455
25998037883(u(t))[25] - 126.45525998037883(u(t))[24])*(u(t))[24]), Differen
tial(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (194.6254318817387(u(t))[25] 
- 194.6254318817387(u(t))[24])*(u(t))[25], (194.6254318817387(u(t))[26] - 1
94.6254318817387(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ife
lse((u(t))[26] > 0, (300.9587037173515(u(t))[26] - 300.9587037173515(u(t))[
25])*(u(t))[26], (300.9587037173515(u(t))[27] - 300.9587037173515(u(t))[26]
)*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (466.8
0720968680595(u(t))[27] - 466.80720968680595(u(t))[26])*(u(t))[27], (466.80
720968680595(u(t))[28] - 466.80720968680595(u(t))[27])*(u(t))[27]), Differe
ntial(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (725.4739742821951(u(t))[28]
 - 725.4739742821951(u(t))[27])*(u(t))[28], (725.4739742821951(u(t))[29] - 
725.4739742821951(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -if
else((u(t))[29] > 0, (404.4287934927362(u(t))[29] - 404.4287934927362(u(t))
[28])*(u(t))[29], (404.4287934927362 / (1 + t) - 404.4287934927362(u(t))[29
])*(u(t))[29])])), Dict{Any, Any}()), nothing, ModelingToolkit.ODESystem(Sy
mbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (725.4
739742821658(u(t))[2] - 725.4739742821658(u(t))[1])*(u(t))[2], (725.4739742
821658(u(t))[3] - 725.4739742821658(u(t))[2])*(u(t))[2]), Differential(t)((
u(t))[3]) ~ -ifelse((u(t))[3] > 0, (466.80720968681806(u(t))[3] - 466.80720
968681806(u(t))[2])*(u(t))[3], (466.80720968681806(u(t))[4] - 466.807209686
81806(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] 
> 0, (300.9587037173515(u(t))[4] - 300.9587037173515(u(t))[3])*(u(t))[4], (
300.9587037173515(u(t))[5] - 300.9587037173515(u(t))[4])*(u(t))[4]), Differ
ential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (194.6254318817387(u(t))[5] -
 194.6254318817387(u(t))[4])*(u(t))[5], (194.6254318817387(u(t))[6] - 194.6
254318817387(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(
t))[6] > 0, (126.45525998037883(u(t))[6] - 126.45525998037883(u(t))[5])*(u(
t))[6], (126.45525998037883(u(t))[7] - 126.45525998037883(u(t))[6])*(u(t))[
6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (82.75935258368779
(u(t))[7] - 82.75935258368779(u(t))[6])*(u(t))[7], (82.75935258368779(u(t))
[8] - 82.75935258368779(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ 
-ifelse((u(t))[8] > 0, (54.76340168250905(u(t))[8] - 54.76340168250905(u(t)
)[7])*(u(t))[8], (54.76340168250905(u(t))[9] - 54.76340168250905(u(t))[8])*
(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (36.8457115
4259183(u(t))[9] - 36.84571154259183(u(t))[8])*(u(t))[9], (36.8457115425918
3(u(t))[10] - 36.84571154259183(u(t))[9])*(u(t))[9]), Differential(t)((u(t)
)[10]) ~ -ifelse((u(t))[10] > 0, (25.40834035503878(u(t))[10] - 25.40834035
503878(u(t))[9])*(u(t))[10], (25.40834035503878(u(t))[11] - 25.408340355038
78(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11]
 > 0, (18.15461953934479(u(t))[11] - 18.15461953934479(u(t))[10])*(u(t))[11
], (18.15461953934479(u(t))[12] - 18.15461953934479(u(t))[11])*(u(t))[11]) 
 …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.4083403550387
46(u(t))[20] - 25.408340355038746(u(t))[19])*(u(t))[20], (25.40834035503874
6(u(t))[21] - 25.408340355038746(u(t))[20])*(u(t))[20]), Differential(t)((u
(t))[21]) ~ -ifelse((u(t))[21] > 0, (36.84571154259191(u(t))[21] - 36.84571
154259191(u(t))[20])*(u(t))[21], (36.84571154259191(u(t))[22] - 36.84571154
259191(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))
[22] > 0, (54.76340168250905(u(t))[22] - 54.76340168250905(u(t))[21])*(u(t)
)[22], (54.76340168250905(u(t))[23] - 54.76340168250905(u(t))[22])*(u(t))[2
2]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (82.759352583687
79(u(t))[23] - 82.75935258368779(u(t))[22])*(u(t))[23], (82.75935258368779(
u(t))[24] - 82.75935258368779(u(t))[23])*(u(t))[23]), Differential(t)((u(t)
)[24]) ~ -ifelse((u(t))[24] > 0, (126.45525998037883(u(t))[24] - 126.455259
98037883(u(t))[23])*(u(t))[24], (126.45525998037883(u(t))[25] - 126.4552599
8037883(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t)
)[25] > 0, (194.6254318817387(u(t))[25] - 194.6254318817387(u(t))[24])*(u(t
))[25], (194.6254318817387(u(t))[26] - 194.6254318817387(u(t))[25])*(u(t))[
25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (300.9587037173
515(u(t))[26] - 300.9587037173515(u(t))[25])*(u(t))[26], (300.9587037173515
(u(t))[27] - 300.9587037173515(u(t))[26])*(u(t))[26]), Differential(t)((u(t
))[27]) ~ -ifelse((u(t))[27] > 0, (466.80720968680595(u(t))[27] - 466.80720
968680595(u(t))[26])*(u(t))[27], (466.80720968680595(u(t))[28] - 466.807209
68680595(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t
))[28] > 0, (725.4739742821951(u(t))[28] - 725.4739742821951(u(t))[27])*(u(
t))[28], (725.4739742821951(u(t))[29] - 725.4739742821951(u(t))[28])*(u(t))
[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (404.428793492
7362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(t))[29], (404.428793492736
2(u(t))[30] - 404.4287934927362(u(t))[29])*(u(t))[29])], t, SymbolicUtils.T
erm{Real, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (
u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[20], (u(t
))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[
27], (u(t))[28], (u(t))[29]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Sym
bolics.Equation[(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0.0], Base.RefV
alue{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Sym
bolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 
0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0
, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0,
 0)), :pdesys1, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0
.6607563687658171, (u(t))[18] => 0.7523361988609284, (u(t))[8] => 0.0344451
9566621118, (u(t))[10] => 0.07984576661461423, (u(t))[27] => 0.994006755657
5177, (u(t))[28] => 0.9961489676440698, (u(t))[2] => 0.002472623156634768, 
(u(t))[24] => 0.9776380308064558, (u(t))[30] => 1.0, (u(t))[21] => 0.920154
2333853858…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuous
Callback[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[], S
ymbolics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOf
Lines.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLi
nes.CenterAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.Cen
terAlignedGrid, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PD
ESystem, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(Method
OfLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}(MethodOfLines.
VariableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataTy
pe, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, 
Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{Sy
mbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{Symboli
cUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), Symboli
cUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUti
ls.Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64
, SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dic
t{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbo
lics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5
], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (
u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t
))[28], (u(t))[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.Immutab
leDict{DataType, Any}}, Vector{Float64}}(x => [0.0, 0.002472623156634768, 0
.0038510323559302617, 0.0059932443424822734, 0.009315959345066682, 0.014454
034006386562, 0.022361969193544162, 0.03444519566621118, 0.0527055660828902
3, 0.07984576661461423  …  0.9201542333853858, 0.9472944339171098, 0.965554
8043337888, 0.9776380308064558, 0.9855459659936134, 0.9906840406549333, 0.9
940067556575177, 0.9961489676440698, 0.9975273768433652, 1.0]), Dict{Symbol
icUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Vector{Float64}}(x =>
 [0.0, 0.002472623156634768, 0.0038510323559302617, 0.0059932443424822734, 
0.009315959345066682, 0.014454034006386562, 0.022361969193544162, 0.0344451
9566621118, 0.05270556608289023, 0.07984576661461423  …  0.9201542333853858
, 0.9472944339171098, 0.9655548043337888, 0.9776380308064558, 0.98554596599
36134, 0.9906840406549333, 0.9940067556575177, 0.9961489676440698, 0.997527
3768433652, 1.0]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType
, Any}}, Vector{Float64}}(x => [0.002472623156634768]), Dict{SymbolicUtils.
Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Ba
se.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{SymbolicUtils.
Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Ba
se.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), MethodOfLines.MOLF
initeDifference{MethodOfLines.CenterAlignedGrid, MethodOfLines.ScalarizedDi
scretization}(Dict{Symbolics.Num, Vector{Float64}}(x => [0.0, 0.00247262315
6634768, 0.0038510323559302617, 0.0059932443424822734, 0.009315959345066682
, 0.014454034006386562, 0.022361969193544162, 0.03444519566621118, 0.052705
56608289023, 0.07984576661461423  …  0.9201542333853858, 0.9472944339171098
, 0.9655548043337888, 0.9776380308064558, 0.9855459659936134, 0.99068404065
49333, 0.9940067556575177, 0.9961489676440698, 0.9975273768433652, 1.0]), t
, 2, MethodOfLines.UpwindScheme(1), MethodOfLines.CenterAlignedGrid(), true
, false, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union
{}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symboli
cs.Equation[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0
], Symbolics.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + 
t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), S
ymbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num
[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[], :p
desys1, nothing), false, Base.RefValue{Any}(nothing)), ModelingToolkit.Syst
emStructures.TearingState{ModelingToolkit.ODESystem}(ModelingToolkit.ODESys
tem(Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, 
(725.4739742821658(u(t))[2] - 725.4739742821658(u(t))[1])*(u(t))[2], (725.4
739742821658(u(t))[3] - 725.4739742821658(u(t))[2])*(u(t))[2]), Differentia
l(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (466.80720968681806(u(t))[3] - 466
.80720968681806(u(t))[2])*(u(t))[3], (466.80720968681806(u(t))[4] - 466.807
20968681806(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t
))[4] > 0, (300.9587037173515(u(t))[4] - 300.9587037173515(u(t))[3])*(u(t))
[4], (300.9587037173515(u(t))[5] - 300.9587037173515(u(t))[4])*(u(t))[4]), 
Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (194.6254318817387(u(t)
)[5] - 194.6254318817387(u(t))[4])*(u(t))[5], (194.6254318817387(u(t))[6] -
 194.6254318817387(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifel
se((u(t))[6] > 0, (126.45525998037883(u(t))[6] - 126.45525998037883(u(t))[5
])*(u(t))[6], (126.45525998037883(u(t))[7] - 126.45525998037883(u(t))[6])*(
u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (82.75935258
368779(u(t))[7] - 82.75935258368779(u(t))[6])*(u(t))[7], (82.75935258368779
(u(t))[8] - 82.75935258368779(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[
8]) ~ -ifelse((u(t))[8] > 0, (54.76340168250905(u(t))[8] - 54.7634016825090
5(u(t))[7])*(u(t))[8], (54.76340168250905(u(t))[9] - 54.76340168250905(u(t)
)[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (36.8
4571154259183(u(t))[9] - 36.84571154259183(u(t))[8])*(u(t))[9], (36.8457115
4259183(u(t))[10] - 36.84571154259183(u(t))[9])*(u(t))[9]), Differential(t)
((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.40834035503878(u(t))[10] - 25.40
834035503878(u(t))[9])*(u(t))[10], (25.40834035503878(u(t))[11] - 25.408340
35503878(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t
))[11] > 0, (18.15461953934479(u(t))[11] - 18.15461953934479(u(t))[10])*(u(
t))[11], (18.15461953934479(u(t))[12] - 18.15461953934479(u(t))[11])*(u(t))
[11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.4083403
55038746(u(t))[20] - 25.408340355038746(u(t))[19])*(u(t))[20], (25.40834035
5038746(u(t))[21] - 25.408340355038746(u(t))[20])*(u(t))[20]), Differential
(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (36.84571154259191(u(t))[21] - 36
.84571154259191(u(t))[20])*(u(t))[21], (36.84571154259191(u(t))[22] - 36.84
571154259191(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse(
(u(t))[22] > 0, (54.76340168250905(u(t))[22] - 54.76340168250905(u(t))[21])
*(u(t))[22], (54.76340168250905(u(t))[23] - 54.76340168250905(u(t))[22])*(u
(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (82.759352
58368779(u(t))[23] - 82.75935258368779(u(t))[22])*(u(t))[23], (82.759352583
68779(u(t))[24] - 82.75935258368779(u(t))[23])*(u(t))[23]), Differential(t)
((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (126.45525998037883(u(t))[24] - 126.
45525998037883(u(t))[23])*(u(t))[24], (126.45525998037883(u(t))[25] - 126.4
5525998037883(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse
((u(t))[25] > 0, (194.6254318817387(u(t))[25] - 194.6254318817387(u(t))[24]
)*(u(t))[25], (194.6254318817387(u(t))[26] - 194.6254318817387(u(t))[25])*(
u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (300.9587
037173515(u(t))[26] - 300.9587037173515(u(t))[25])*(u(t))[26], (300.9587037
173515(u(t))[27] - 300.9587037173515(u(t))[26])*(u(t))[26]), Differential(t
)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (466.80720968680595(u(t))[27] - 466
.80720968680595(u(t))[26])*(u(t))[27], (466.80720968680595(u(t))[28] - 466.
80720968680595(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifels
e((u(t))[28] > 0, (725.4739742821951(u(t))[28] - 725.4739742821951(u(t))[27
])*(u(t))[28], (725.4739742821951(u(t))[29] - 725.4739742821951(u(t))[28])*
(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (404.428
7934927362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(t))[29], (404.428793
4927362(u(t))[30] - 404.4287934927362(u(t))[29])*(u(t))[29])], t, SymbolicU
tils.Term{Real, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))
[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[20]
, (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (
u(t))[27], (u(t))[28], (u(t))[29]], Any[], Dict{Any, Any}(:u => u(t)), Any[
], Symbolics.Equation[(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0.0], Bas
e.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matr
ix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(u
ndef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(un
def, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(und
ef, 0, 0)), :pdesys1, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17
] => 0.6607563687658171, (u(t))[18] => 0.7523361988609284, (u(t))[8] => 0.0
3444519566621118, (u(t))[10] => 0.07984576661461423, (u(t))[27] => 0.994006
7556575177, (u(t))[28] => 0.9961489676440698, (u(t))[2] => 0.00247262315663
4768, (u(t))[24] => 0.9776380308064558, (u(t))[30] => 1.0, (u(t))[21] => 0.
9201542333853858…), nothing, nothing, nothing, ModelingToolkit.SymbolicCont
inuousCallback[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equatio
n[], Symbolics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], Me
thodOfLines.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, Meth
odOfLines.CenterAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLin
es.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretization}, ModelingTool
kit.PDESystem, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(
MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}(MethodOf
Lines.VariableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{
DataType, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{Data
Type, Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), D
ict{SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{S
ymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), S
ymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{Symbo
licUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict
{Int64, SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)
), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector
{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u
(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[
21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27]
, (u(t))[28], (u(t))[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.I
mmutableDict{DataType, Any}}, Vector{Float64}}(x => [0.0, 0.002472623156634
768, 0.0038510323559302617, 0.0059932443424822734, 0.009315959345066682, 0.
014454034006386562, 0.022361969193544162, 0.03444519566621118, 0.0527055660
8289023, 0.07984576661461423  …  0.9201542333853858, 0.9472944339171098, 0.
9655548043337888, 0.9776380308064558, 0.9855459659936134, 0.990684040654933
3, 0.9940067556575177, 0.9961489676440698, 0.9975273768433652, 1.0]), Dict{
SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Vector{Float64}
}(x => [0.0, 0.002472623156634768, 0.0038510323559302617, 0.005993244342482
2734, 0.009315959345066682, 0.014454034006386562, 0.022361969193544162, 0.0
3444519566621118, 0.05270556608289023, 0.07984576661461423  …  0.9201542333
853858, 0.9472944339171098, 0.9655548043337888, 0.9776380308064558, 0.98554
59659936134, 0.9906840406549333, 0.9940067556575177, 0.9961489676440698, 0.
9975273768433652, 1.0]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{Da
taType, Any}}, Vector{Float64}}(x => [0.002472623156634768]), Dict{Symbolic
Utils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tu
ple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{Symbolic
Utils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tu
ple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), MethodOfLine
s.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodOfLines.Scalar
izedDiscretization}(Dict{Symbolics.Num, Vector{Float64}}(x => [0.0, 0.00247
2623156634768, 0.0038510323559302617, 0.0059932443424822734, 0.009315959345
066682, 0.014454034006386562, 0.022361969193544162, 0.03444519566621118, 0.
05270556608289023, 0.07984576661461423  …  0.9201542333853858, 0.9472944339
171098, 0.9655548043337888, 0.9776380308064558, 0.9855459659936134, 0.99068
40406549333, 0.9940067556575177, 0.9961489676440698, 0.9975273768433652, 1.
0]), t, 2, MethodOfLines.UpwindScheme(1), MethodOfLines.CenterAlignedGrid()
, true, false, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol,
 Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(S
ymbolics.Equation[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x
)) ~ 0], Symbolics.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 /
 (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20
.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symboli
cs.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any
[], :pdesys1, nothing), false, Base.RefValue{Any}(nothing)), nothing, Model
ingToolkit.Substitutions(Symbolics.Equation[(u(t))[30] ~ -(-1.0 / (1 + t)),
 (u(t))[1] ~ 0.0], [Int64[], Int64[]], Symbolics.Equation[Differential(t)((
u(t))[2]) ~ -ifelse((u(t))[2] > 0, 725.4739742821658((u(t))[2]^2), (725.473
9742821658(u(t))[3] - 725.4739742821658(u(t))[2])*(u(t))[2]), Differential(
t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (466.80720968681806(u(t))[3] - 466.8
0720968681806(u(t))[2])*(u(t))[3], (466.80720968681806(u(t))[4] - 466.80720
968681806(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))
[4] > 0, (300.9587037173515(u(t))[4] - 300.9587037173515(u(t))[3])*(u(t))[4
], (300.9587037173515(u(t))[5] - 300.9587037173515(u(t))[4])*(u(t))[4]), Di
fferential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (194.6254318817387(u(t))[
5] - 194.6254318817387(u(t))[4])*(u(t))[5], (194.6254318817387(u(t))[6] - 1
94.6254318817387(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse
((u(t))[6] > 0, (126.45525998037883(u(t))[6] - 126.45525998037883(u(t))[5])
*(u(t))[6], (126.45525998037883(u(t))[7] - 126.45525998037883(u(t))[6])*(u(
t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (82.7593525836
8779(u(t))[7] - 82.75935258368779(u(t))[6])*(u(t))[7], (82.75935258368779(u
(t))[8] - 82.75935258368779(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]
) ~ -ifelse((u(t))[8] > 0, (54.76340168250905(u(t))[8] - 54.76340168250905(
u(t))[7])*(u(t))[8], (54.76340168250905(u(t))[9] - 54.76340168250905(u(t))[
8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (36.845
71154259183(u(t))[9] - 36.84571154259183(u(t))[8])*(u(t))[9], (36.845711542
59183(u(t))[10] - 36.84571154259183(u(t))[9])*(u(t))[9]), Differential(t)((
u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.40834035503878(u(t))[10] - 25.4083
4035503878(u(t))[9])*(u(t))[10], (25.40834035503878(u(t))[11] - 25.40834035
503878(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))
[11] > 0, (18.15461953934479(u(t))[11] - 18.15461953934479(u(t))[10])*(u(t)
)[11], (18.15461953934479(u(t))[12] - 18.15461953934479(u(t))[11])*(u(t))[1
1])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.408340355
038746(u(t))[20] - 25.408340355038746(u(t))[19])*(u(t))[20], (25.4083403550
38746(u(t))[21] - 25.408340355038746(u(t))[20])*(u(t))[20]), Differential(t
)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (36.84571154259191(u(t))[21] - 36.8
4571154259191(u(t))[20])*(u(t))[21], (36.84571154259191(u(t))[22] - 36.8457
1154259191(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u
(t))[22] > 0, (54.76340168250905(u(t))[22] - 54.76340168250905(u(t))[21])*(
u(t))[22], (54.76340168250905(u(t))[23] - 54.76340168250905(u(t))[22])*(u(t
))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (82.75935258
368779(u(t))[23] - 82.75935258368779(u(t))[22])*(u(t))[23], (82.75935258368
779(u(t))[24] - 82.75935258368779(u(t))[23])*(u(t))[23]), Differential(t)((
u(t))[24]) ~ -ifelse((u(t))[24] > 0, (126.45525998037883(u(t))[24] - 126.45
525998037883(u(t))[23])*(u(t))[24], (126.45525998037883(u(t))[25] - 126.455
25998037883(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((
u(t))[25] > 0, (194.6254318817387(u(t))[25] - 194.6254318817387(u(t))[24])*
(u(t))[25], (194.6254318817387(u(t))[26] - 194.6254318817387(u(t))[25])*(u(
t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (300.958703
7173515(u(t))[26] - 300.9587037173515(u(t))[25])*(u(t))[26], (300.958703717
3515(u(t))[27] - 300.9587037173515(u(t))[26])*(u(t))[26]), Differential(t)(
(u(t))[27]) ~ -ifelse((u(t))[27] > 0, (466.80720968680595(u(t))[27] - 466.8
0720968680595(u(t))[26])*(u(t))[27], (466.80720968680595(u(t))[28] - 466.80
720968680595(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse(
(u(t))[28] > 0, (725.4739742821951(u(t))[28] - 725.4739742821951(u(t))[27])
*(u(t))[28], (725.4739742821951(u(t))[29] - 725.4739742821951(u(t))[28])*(u
(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (404.42879
34927362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(t))[29], (404.42879349
27362 / (1 + t) - 404.4287934927362(u(t))[29])*(u(t))[29])])), Any[(u(t))[2
], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))
[9], (u(t))[10], (u(t))[11]  …  Differential(t)((u(t))[20]), Differential(t
)((u(t))[21]), Differential(t)((u(t))[22]), Differential(t)((u(t))[23]), Di
fferential(t)((u(t))[24]), Differential(t)((u(t))[25]), Differential(t)((u(
t))[26]), Differential(t)((u(t))[27]), Differential(t)((u(t))[28]), Differe
ntial(t)((u(t))[29])], ModelingToolkit.SystemStructures.SystemStructure(Mod
elingToolkit.SystemStructures.DiffGraph(Union{Nothing, Int64}[29, 30, 31, 3
2, 33, 34, 35, 36, 37, 38  …  nothing, nothing, nothing, nothing, nothing, 
nothing, nothing, nothing, nothing, nothing], Union{Nothing, Int64}[nothing
, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, n
othing  …  19, 20, 21, 22, 23, 24, 25, 26, 27, 28]), ModelingToolkit.System
Structures.DiffGraph(Union{Nothing, Int64}[nothing, nothing, nothing, nothi
ng, nothing, nothing, nothing, nothing, nothing, nothing  …  nothing, nothi
ng, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing]
, Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, nothin
g, nothing, nothing, nothing, nothing  …  nothing, nothing, nothing, nothin
g, nothing, nothing, nothing, nothing, nothing, nothing]), BipartiteGraph w
ith (28, 56) (𝑠,𝑑)-vertices
   #  src      dst
  1   [1, 29]  [1]
  2   [2, 30]  [2]
  3   [3, 31]  [3]
  4   [4, 32]  [4]
  5   [5, 33]  [5]
  6   [6, 34]  [6]
  7   [7, 35]  [7]
  8   [8, 36]  [8]
  9   [9, 37]  [9]
  ⋮            
 48   ⋅        [20]
 49   ⋅        [21]
 50   ⋅        [22]
 51   ⋅        [23]
 52   ⋅        [24]
 53   ⋅        [25]
 54   ⋅        [26]
 55   ⋅        [27]
 56   ⋅        [28], BipartiteGraph with (30, 58) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    ∅
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    ∅
 55   ⋅    ∅
 56   ⋅    ∅
 57   ⋅    [29]
 58   ⋅    [30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0.0], [Int64[], Int64[]], Symbo
lics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, 725.47397
42821658((u(t))[2]^2), (725.4739742821658(u(t))[3] - 725.4739742821658(u(t)
)[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (466.
80720968681806(u(t))[3] - 466.80720968681806(u(t))[2])*(u(t))[3], (466.8072
0968681806(u(t))[4] - 466.80720968681806(u(t))[3])*(u(t))[3]), Differential
(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (300.9587037173515(u(t))[4] - 300.9
587037173515(u(t))[3])*(u(t))[4], (300.9587037173515(u(t))[5] - 300.9587037
173515(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5]
 > 0, (194.6254318817387(u(t))[5] - 194.6254318817387(u(t))[4])*(u(t))[5], 
(194.6254318817387(u(t))[6] - 194.6254318817387(u(t))[5])*(u(t))[5]), Diffe
rential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (126.45525998037883(u(t))[6]
 - 126.45525998037883(u(t))[5])*(u(t))[6], (126.45525998037883(u(t))[7] - 1
26.45525998037883(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifels
e((u(t))[7] > 0, (82.75935258368779(u(t))[7] - 82.75935258368779(u(t))[6])*
(u(t))[7], (82.75935258368779(u(t))[8] - 82.75935258368779(u(t))[7])*(u(t))
[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (54.7634016825090
5(u(t))[8] - 54.76340168250905(u(t))[7])*(u(t))[8], (54.76340168250905(u(t)
)[9] - 54.76340168250905(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~
 -ifelse((u(t))[9] > 0, (36.84571154259183(u(t))[9] - 36.84571154259183(u(t
))[8])*(u(t))[9], (36.84571154259183(u(t))[10] - 36.84571154259183(u(t))[9]
)*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.408
34035503878(u(t))[10] - 25.40834035503878(u(t))[9])*(u(t))[10], (25.4083403
5503878(u(t))[11] - 25.40834035503878(u(t))[10])*(u(t))[10]), Differential(
t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.15461953934479(u(t))[11] - 18.
15461953934479(u(t))[10])*(u(t))[11], (18.15461953934479(u(t))[12] - 18.154
61953934479(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifels
e((u(t))[20] > 0, (25.408340355038746(u(t))[20] - 25.408340355038746(u(t))[
19])*(u(t))[20], (25.408340355038746(u(t))[21] - 25.408340355038746(u(t))[2
0])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (36.
84571154259191(u(t))[21] - 36.84571154259191(u(t))[20])*(u(t))[21], (36.845
71154259191(u(t))[22] - 36.84571154259191(u(t))[21])*(u(t))[21]), Different
ial(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (54.76340168250905(u(t))[22] -
 54.76340168250905(u(t))[21])*(u(t))[22], (54.76340168250905(u(t))[23] - 54
.76340168250905(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifel
se((u(t))[23] > 0, (82.75935258368779(u(t))[23] - 82.75935258368779(u(t))[2
2])*(u(t))[23], (82.75935258368779(u(t))[24] - 82.75935258368779(u(t))[23])
*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (126.45
525998037883(u(t))[24] - 126.45525998037883(u(t))[23])*(u(t))[24], (126.455
25998037883(u(t))[25] - 126.45525998037883(u(t))[24])*(u(t))[24]), Differen
tial(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (194.6254318817387(u(t))[25] 
- 194.6254318817387(u(t))[24])*(u(t))[25], (194.6254318817387(u(t))[26] - 1
94.6254318817387(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ife
lse((u(t))[26] > 0, (300.9587037173515(u(t))[26] - 300.9587037173515(u(t))[
25])*(u(t))[26], (300.9587037173515(u(t))[27] - 300.9587037173515(u(t))[26]
)*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (466.8
0720968680595(u(t))[27] - 466.80720968680595(u(t))[26])*(u(t))[27], (466.80
720968680595(u(t))[28] - 466.80720968680595(u(t))[27])*(u(t))[27]), Differe
ntial(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (725.4739742821951(u(t))[28]
 - 725.4739742821951(u(t))[27])*(u(t))[28], (725.4739742821951(u(t))[29] - 
725.4739742821951(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -if
else((u(t))[29] > 0, (404.4287934927362(u(t))[29] - 404.4287934927362(u(t))
[28])*(u(t))[29], (404.4287934927362 / (1 + t) - 404.4287934927362(u(t))[29
])*(u(t))[29])]))), [0.002472623156634768, 0.0038510323559302617, 0.0059932
443424822734, 0.009315959345066682, 0.014454034006386562, 0.022361969193544
162, 0.03444519566621118, 0.05270556608289023, 0.07984576661461423, 0.11920
292202211757  …  0.8807970779778824, 0.9201542333853858, 0.9472944339171098
, 0.9655548043337888, 0.9776380308064558, 0.9855459659936134, 0.99068404065
49333, 0.9940067556575177, 0.9961489676440698, 0.9975273768433652], (0.0, 2
0.0), SciMLBase.NullParameters(), Base.Pairs{Symbol, Union{}, Tuple{}, Name
dTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem())
 SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, SciML
Base.NullParameters, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, 
ModelingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0xa33ad173, 0x0c5b92ed, 0x98b248af, 0xd72f751b, 0x6
f553919)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋a
rg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x46d48b5f, 0x43bbbf68, 0xfe9b8152, 0x8b2b6816, 0xc6b98cc0)}
}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbo
l, Nothing, ModelingToolkit.var"#472#generated_observed#471"{Bool, Modeling
Toolkit.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}, Ba
se.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.Stan
dardODEProblem}(SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, Model
ingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0xa33ad173, 0x0c5b92ed, 0x98b248af, 0xd72f751b, 0x6f5539
19)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x46d48b5f, 0x43bbbf68, 0xfe9b8152, 0x8b2b6816, 0xc6b98cc0)}}, Li
nearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, No
thing, ModelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolk
it.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}(Modeling
Toolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0xa33ad173, 0x0c5b92ed, 0x98b248af, 0xd72f751b, 0x6f553919)
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋
arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0x46d48b5f, 0x43bbbf68, 0xfe9b8152, 0x8b2b6816, 0xc6b98cc0)}}(Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xa33ad173
, 0x0c5b92ed, 0x98b248af, 0xd72f751b, 0x6f553919)}(quote
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (+)((+)((+)((/)(3.451847873415997, (+)(1, t))
, (*)(-0.3758367706775086, (getindex)(ˍ₋arg1, 26))), (*)(1.6499474476248417
, (getindex)(ˍ₋arg1, 27))), (*)(-3.72595855036333, (getindex)(ˍ₋arg1, 28)))
            var"(u(t))[1]" = (+)((+)((*)(1.6499474476248412, (getindex)(ˍ₋a
rg1, 2)), (*)(-3.725958550363329, (getindex)(ˍ₋arg1, 1))), (*)(-0.375836770
6775085, (getindex)(ˍ₋arg1, 3)))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
                (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, 
Val{1}(), Val{(28,)}(), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1), 0)
                            (*)((+)((*)(-510.5729767825508, var"(u(t))[1]")
, (*)(510.5729767825508, (getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1, 1))
                        else
                            (*)((+)((*)(-510.5729767825508, (getindex)(ˍ₋ar
g1, 1)), (*)(510.5729767825508, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1,
 1))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2), 0)
                            (*)((+)((*)(-536.5139606774583, (getindex)(ˍ₋ar
g1, 1)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1,
 2))
                        else
                            (*)((+)((*)(-536.5139606774583, (getindex)(ˍ₋ar
g1, 2)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1,
 2))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3), 0)
                            (*)((+)((*)(-339.8938320398733, (getindex)(ˍ₋ar
g1, 2)), (*)(339.8938320398733, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1,
 3))
                        else
                            (*)((+)((*)(-339.8938320398733, (getindex)(ˍ₋ar
g1, 3)), (*)(339.8938320398733, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1,
 3))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4), 0)
                            (*)((+)((*)(-215.96618521800934, (getindex)(ˍ₋a
rg1, 3)), (*)(215.96618521800934, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg
1, 4))
                        else
                            (*)((+)((*)(-215.96618521800934, (getindex)(ˍ₋a
rg1, 4)), (*)(215.96618521800934, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg
1, 4))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5), 0)
                            (*)((+)((*)(-137.8602738401593, (getindex)(ˍ₋ar
g1, 4)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1,
 5))
                        else
                            (*)((+)((*)(-137.8602738401593, (getindex)(ˍ₋ar
g1, 5)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1,
 5))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6), 0)
                            (*)((+)((*)(-88.64069899746065, (getindex)(ˍ₋ar
g1, 5)), (*)(88.64069899746065, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1,
 6))
                        else
                            (*)((+)((*)(-88.64069899746065, (getindex)(ˍ₋ar
g1, 6)), (*)(88.64069899746065, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1,
 6))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7), 0)
                            (*)((+)((*)(-57.63537301586889, (getindex)(ˍ₋ar
g1, 6)), (*)(57.63537301586889, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1,
 7))
                        else
                            (*)((+)((*)(-57.63537301586889, (getindex)(ˍ₋ar
g1, 7)), (*)(57.63537301586889, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1,
 7))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8), 0)
                            (*)((+)((*)(-38.121532476653655, (getindex)(ˍ₋a
rg1, 7)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg
1, 8))
                        else
                            (*)((+)((*)(-38.121532476653655, (getindex)(ˍ₋a
rg1, 8)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg
1, 8))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9), 0)
                            (*)((+)((*)(-25.8680677500096, (getindex)(ˍ₋arg
1, 8)), (*)(25.8680677500096, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 9
))
                        else
                            (*)((+)((*)(-25.8680677500096, (getindex)(ˍ₋arg
1, 9)), (*)(25.8680677500096, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 
9))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10), 0)
                            (*)((+)((*)(-18.218108062641644, (getindex)(ˍ₋a
rg1, 9)), (*)(18.218108062641644, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋ar
g1, 10))
                        else
                            (*)((+)((*)(-18.218108062641644, (getindex)(ˍ₋a
rg1, 10)), (*)(18.218108062641644, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋a
rg1, 10))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11), 0)
                            (*)((+)((*)(-13.5129426120403, (getindex)(ˍ₋arg
1, 10)), (*)(13.5129426120403, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1,
 11))
                        else
                            (*)((+)((*)(-13.5129426120403, (getindex)(ˍ₋arg
1, 11)), (*)(13.5129426120403, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1,
 11))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12), 0)
                            (*)((+)((*)(-10.732368798524625, (getindex)(ˍ₋a
rg1, 11)), (*)(10.732368798524625, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋a
rg1, 12))
                        else
                            (*)((+)((*)(-10.732368798524625, (getindex)(ˍ₋a
rg1, 12)), (*)(10.732368798524625, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋a
rg1, 12))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13), 0)
                            (*)((+)((*)(-9.273485690568227, (getindex)(ˍ₋ar
g1, 12)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg
1, 13))
                        else
                            (*)((+)((*)(-9.273485690568227, (getindex)(ˍ₋ar
g1, 13)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg
1, 13))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14), 0)
                            (*)((+)((*)(-8.819969376718124, (getindex)(ˍ₋ar
g1, 13)), (*)(8.819969376718124, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg
1, 14))
                        else
                            (*)((+)((*)(-8.819969376718124, (getindex)(ˍ₋ar
g1, 14)), (*)(8.819969376718124, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg
1, 14))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15), 0)
                            (*)((+)((*)(-9.273485690568227, (getindex)(ˍ₋ar
g1, 14)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg
1, 15))
                        else
                            (*)((+)((*)(-9.273485690568227, (getindex)(ˍ₋ar
g1, 15)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg
1, 15))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16), 0)
                            (*)((+)((*)(-10.73236879852462, (getindex)(ˍ₋ar
g1, 15)), (*)(10.73236879852462, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg
1, 16))
                        else
                            (*)((+)((*)(-10.73236879852462, (getindex)(ˍ₋ar
g1, 16)), (*)(10.73236879852462, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg
1, 16))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17), 0)
                            (*)((+)((*)(-13.512942612040309, (getindex)(ˍ₋a
rg1, 16)), (*)(13.512942612040309, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋a
rg1, 17))
                        else
                            (*)((+)((*)(-13.512942612040309, (getindex)(ˍ₋a
rg1, 17)), (*)(13.512942612040309, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋a
rg1, 17))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18), 0)
                            (*)((+)((*)(-18.218108062641672, (getindex)(ˍ₋a
rg1, 17)), (*)(18.218108062641672, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋a
rg1, 18))
                        else
                            (*)((+)((*)(-18.218108062641672, (getindex)(ˍ₋a
rg1, 18)), (*)(18.218108062641672, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋a
rg1, 18))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19), 0)
                            (*)((+)((*)(-25.868067750009544, (getindex)(ˍ₋a
rg1, 18)), (*)(25.868067750009544, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋a
rg1, 19))
                        else
                            (*)((+)((*)(-25.868067750009544, (getindex)(ˍ₋a
rg1, 19)), (*)(25.868067750009544, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋a
rg1, 19))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20), 0)
                            (*)((+)((*)(-38.121532476653655, (getindex)(ˍ₋a
rg1, 19)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋a
rg1, 20))
                        else
                            (*)((+)((*)(-38.121532476653655, (getindex)(ˍ₋a
rg1, 20)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋a
rg1, 20))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21), 0)
                            (*)((+)((*)(-57.63537301586917, (getindex)(ˍ₋ar
g1, 20)), (*)(57.63537301586917, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg
1, 21))
                        else
                            (*)((+)((*)(-57.63537301586917, (getindex)(ˍ₋ar
g1, 21)), (*)(57.63537301586917, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg
1, 21))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22), 0)
                            (*)((+)((*)(-88.64069899745934, (getindex)(ˍ₋ar
g1, 21)), (*)(88.64069899745934, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg
1, 22))
                        else
                            (*)((+)((*)(-88.64069899745934, (getindex)(ˍ₋ar
g1, 22)), (*)(88.64069899745934, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg
1, 22))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23), 0)
                            (*)((+)((*)(-137.8602738401593, (getindex)(ˍ₋ar
g1, 22)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg
1, 23))
                        else
                            (*)((+)((*)(-137.8602738401593, (getindex)(ˍ₋ar
g1, 23)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg
1, 23))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24), 0)
                            (*)((+)((*)(-215.96618521801062, (getindex)(ˍ₋a
rg1, 23)), (*)(215.96618521801062, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋a
rg1, 24))
                        else
                            (*)((+)((*)(-215.96618521801062, (getindex)(ˍ₋a
rg1, 24)), (*)(215.96618521801062, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋a
rg1, 24))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25), 0)
                            (*)((+)((*)(-339.89383203987967, (getindex)(ˍ₋a
rg1, 24)), (*)(339.89383203987967, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋a
rg1, 25))
                        else
                            (*)((+)((*)(-339.89383203987967, (getindex)(ˍ₋a
rg1, 25)), (*)(339.89383203987967, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋a
rg1, 25))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26), 0)
                            (*)((+)((*)(-536.5139606774583, (getindex)(ˍ₋ar
g1, 25)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg
1, 26))
                        else
                            (*)((+)((*)(-536.5139606774583, (getindex)(ˍ₋ar
g1, 26)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg
1, 26))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27), 0)
                            (*)((+)((*)(-510.5729767825508, (getindex)(ˍ₋ar
g1, 26)), (*)(510.5729767825508, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg
1, 27))
                        else
                            (*)((+)((*)(-510.5729767825508, (getindex)(ˍ₋ar
g1, 27)), (*)(510.5729767825508, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg
1, 27))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28), 0)
                            (*)((+)((*)(-404.4287934927362, (getindex)(ˍ₋ar
g1, 27)), (*)(404.4287934927362, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg
1, 28))
                        else
                            (*)((+)((*)(-404.4287934927362, (getindex)(ˍ₋ar
g1, 28)), (*)(404.4287934927362, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 28))
                        end))
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x46d48b5f, 0x43bbbf68, 0xfe9b8152, 0x8b2b6816, 0xc6b98cc0)}(quot
e
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (+)((+)((+)((/)(3.451847873415997, (+)(1, t))
, (*)(-0.3758367706775086, (getindex)(ˍ₋arg1, 26))), (*)(1.6499474476248417
, (getindex)(ˍ₋arg1, 27))), (*)(-3.72595855036333, (getindex)(ˍ₋arg1, 28)))
            var"(u(t))[1]" = (+)((+)((*)(1.6499474476248412, (getindex)(ˍ₋a
rg1, 2)), (*)(-3.725958550363329, (getindex)(ˍ₋arg1, 1))), (*)(-0.375836770
6775085, (getindex)(ˍ₋arg1, 3)))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/Symbolics/FGTCH/src/build_function.jl:519 =#
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds
 begin
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1),
 0)
                                    (*)((+)((*)(-510.5729767825508, var"(u(
t))[1]"), (*)(510.5729767825508, (getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1
, 1))
                                else
                                    (*)((+)((*)(-510.5729767825508, (getind
ex)(ˍ₋arg1, 1)), (*)(510.5729767825508, (getindex)(ˍ₋arg1, 2))), (getindex)
(ˍ₋arg1, 1))
                                end)
                        ˍ₋out[2] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2),
 0)
                                    (*)((+)((*)(-536.5139606774583, (getind
ex)(ˍ₋arg1, 1)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 2))), (getindex)
(ˍ₋arg1, 2))
                                else
                                    (*)((+)((*)(-536.5139606774583, (getind
ex)(ˍ₋arg1, 2)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 3))), (getindex)
(ˍ₋arg1, 2))
                                end)
                        ˍ₋out[3] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3),
 0)
                                    (*)((+)((*)(-339.8938320398733, (getind
ex)(ˍ₋arg1, 2)), (*)(339.8938320398733, (getindex)(ˍ₋arg1, 3))), (getindex)
(ˍ₋arg1, 3))
                                else
                                    (*)((+)((*)(-339.8938320398733, (getind
ex)(ˍ₋arg1, 3)), (*)(339.8938320398733, (getindex)(ˍ₋arg1, 4))), (getindex)
(ˍ₋arg1, 3))
                                end)
                        ˍ₋out[4] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4),
 0)
                                    (*)((+)((*)(-215.96618521800934, (getin
dex)(ˍ₋arg1, 3)), (*)(215.96618521800934, (getindex)(ˍ₋arg1, 4))), (getinde
x)(ˍ₋arg1, 4))
                                else
                                    (*)((+)((*)(-215.96618521800934, (getin
dex)(ˍ₋arg1, 4)), (*)(215.96618521800934, (getindex)(ˍ₋arg1, 5))), (getinde
x)(ˍ₋arg1, 4))
                                end)
                        ˍ₋out[5] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5),
 0)
                                    (*)((+)((*)(-137.8602738401593, (getind
ex)(ˍ₋arg1, 4)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 5))), (getindex)
(ˍ₋arg1, 5))
                                else
                                    (*)((+)((*)(-137.8602738401593, (getind
ex)(ˍ₋arg1, 5)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 6))), (getindex)
(ˍ₋arg1, 5))
                                end)
                        ˍ₋out[6] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6),
 0)
                                    (*)((+)((*)(-88.64069899746065, (getind
ex)(ˍ₋arg1, 5)), (*)(88.64069899746065, (getindex)(ˍ₋arg1, 6))), (getindex)
(ˍ₋arg1, 6))
                                else
                                    (*)((+)((*)(-88.64069899746065, (getind
ex)(ˍ₋arg1, 6)), (*)(88.64069899746065, (getindex)(ˍ₋arg1, 7))), (getindex)
(ˍ₋arg1, 6))
                                end)
                        ˍ₋out[7] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7),
 0)
                                    (*)((+)((*)(-57.63537301586889, (getind
ex)(ˍ₋arg1, 6)), (*)(57.63537301586889, (getindex)(ˍ₋arg1, 7))), (getindex)
(ˍ₋arg1, 7))
                                else
                                    (*)((+)((*)(-57.63537301586889, (getind
ex)(ˍ₋arg1, 7)), (*)(57.63537301586889, (getindex)(ˍ₋arg1, 8))), (getindex)
(ˍ₋arg1, 7))
                                end)
                        ˍ₋out[8] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8),
 0)
                                    (*)((+)((*)(-38.121532476653655, (getin
dex)(ˍ₋arg1, 7)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 8))), (getinde
x)(ˍ₋arg1, 8))
                                else
                                    (*)((+)((*)(-38.121532476653655, (getin
dex)(ˍ₋arg1, 8)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 9))), (getinde
x)(ˍ₋arg1, 8))
                                end)
                        ˍ₋out[9] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9),
 0)
                                    (*)((+)((*)(-25.8680677500096, (getinde
x)(ˍ₋arg1, 8)), (*)(25.8680677500096, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ
₋arg1, 9))
                                else
                                    (*)((+)((*)(-25.8680677500096, (getinde
x)(ˍ₋arg1, 9)), (*)(25.8680677500096, (getindex)(ˍ₋arg1, 10))), (getindex)(
ˍ₋arg1, 9))
                                end)
                        ˍ₋out[10] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10
), 0)
                                    (*)((+)((*)(-18.218108062641644, (getin
dex)(ˍ₋arg1, 9)), (*)(18.218108062641644, (getindex)(ˍ₋arg1, 10))), (getind
ex)(ˍ₋arg1, 10))
                                else
                                    (*)((+)((*)(-18.218108062641644, (getin
dex)(ˍ₋arg1, 10)), (*)(18.218108062641644, (getindex)(ˍ₋arg1, 11))), (getin
dex)(ˍ₋arg1, 10))
                                end)
                        ˍ₋out[11] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11
), 0)
                                    (*)((+)((*)(-13.5129426120403, (getinde
x)(ˍ₋arg1, 10)), (*)(13.5129426120403, (getindex)(ˍ₋arg1, 11))), (getindex)
(ˍ₋arg1, 11))
                                else
                                    (*)((+)((*)(-13.5129426120403, (getinde
x)(ˍ₋arg1, 11)), (*)(13.5129426120403, (getindex)(ˍ₋arg1, 12))), (getindex)
(ˍ₋arg1, 11))
                                end)
                        ˍ₋out[12] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12
), 0)
                                    (*)((+)((*)(-10.732368798524625, (getin
dex)(ˍ₋arg1, 11)), (*)(10.732368798524625, (getindex)(ˍ₋arg1, 12))), (getin
dex)(ˍ₋arg1, 12))
                                else
                                    (*)((+)((*)(-10.732368798524625, (getin
dex)(ˍ₋arg1, 12)), (*)(10.732368798524625, (getindex)(ˍ₋arg1, 13))), (getin
dex)(ˍ₋arg1, 12))
                                end)
                        ˍ₋out[13] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13
), 0)
                                    (*)((+)((*)(-9.273485690568227, (getind
ex)(ˍ₋arg1, 12)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 13))), (getinde
x)(ˍ₋arg1, 13))
                                else
                                    (*)((+)((*)(-9.273485690568227, (getind
ex)(ˍ₋arg1, 13)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 14))), (getinde
x)(ˍ₋arg1, 13))
                                end)
                        ˍ₋out[14] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14
), 0)
                                    (*)((+)((*)(-8.819969376718124, (getind
ex)(ˍ₋arg1, 13)), (*)(8.819969376718124, (getindex)(ˍ₋arg1, 14))), (getinde
x)(ˍ₋arg1, 14))
                                else
                                    (*)((+)((*)(-8.819969376718124, (getind
ex)(ˍ₋arg1, 14)), (*)(8.819969376718124, (getindex)(ˍ₋arg1, 15))), (getinde
x)(ˍ₋arg1, 14))
                                end)
                        ˍ₋out[15] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15
), 0)
                                    (*)((+)((*)(-9.273485690568227, (getind
ex)(ˍ₋arg1, 14)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 15))), (getinde
x)(ˍ₋arg1, 15))
                                else
                                    (*)((+)((*)(-9.273485690568227, (getind
ex)(ˍ₋arg1, 15)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 16))), (getinde
x)(ˍ₋arg1, 15))
                                end)
                        ˍ₋out[16] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16
), 0)
                                    (*)((+)((*)(-10.73236879852462, (getind
ex)(ˍ₋arg1, 15)), (*)(10.73236879852462, (getindex)(ˍ₋arg1, 16))), (getinde
x)(ˍ₋arg1, 16))
                                else
                                    (*)((+)((*)(-10.73236879852462, (getind
ex)(ˍ₋arg1, 16)), (*)(10.73236879852462, (getindex)(ˍ₋arg1, 17))), (getinde
x)(ˍ₋arg1, 16))
                                end)
                        ˍ₋out[17] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17
), 0)
                                    (*)((+)((*)(-13.512942612040309, (getin
dex)(ˍ₋arg1, 16)), (*)(13.512942612040309, (getindex)(ˍ₋arg1, 17))), (getin
dex)(ˍ₋arg1, 17))
                                else
                                    (*)((+)((*)(-13.512942612040309, (getin
dex)(ˍ₋arg1, 17)), (*)(13.512942612040309, (getindex)(ˍ₋arg1, 18))), (getin
dex)(ˍ₋arg1, 17))
                                end)
                        ˍ₋out[18] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18
), 0)
                                    (*)((+)((*)(-18.218108062641672, (getin
dex)(ˍ₋arg1, 17)), (*)(18.218108062641672, (getindex)(ˍ₋arg1, 18))), (getin
dex)(ˍ₋arg1, 18))
                                else
                                    (*)((+)((*)(-18.218108062641672, (getin
dex)(ˍ₋arg1, 18)), (*)(18.218108062641672, (getindex)(ˍ₋arg1, 19))), (getin
dex)(ˍ₋arg1, 18))
                                end)
                        ˍ₋out[19] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19
), 0)
                                    (*)((+)((*)(-25.868067750009544, (getin
dex)(ˍ₋arg1, 18)), (*)(25.868067750009544, (getindex)(ˍ₋arg1, 19))), (getin
dex)(ˍ₋arg1, 19))
                                else
                                    (*)((+)((*)(-25.868067750009544, (getin
dex)(ˍ₋arg1, 19)), (*)(25.868067750009544, (getindex)(ˍ₋arg1, 20))), (getin
dex)(ˍ₋arg1, 19))
                                end)
                        ˍ₋out[20] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20
), 0)
                                    (*)((+)((*)(-38.121532476653655, (getin
dex)(ˍ₋arg1, 19)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 20))), (getin
dex)(ˍ₋arg1, 20))
                                else
                                    (*)((+)((*)(-38.121532476653655, (getin
dex)(ˍ₋arg1, 20)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 21))), (getin
dex)(ˍ₋arg1, 20))
                                end)
                        ˍ₋out[21] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21
), 0)
                                    (*)((+)((*)(-57.63537301586917, (getind
ex)(ˍ₋arg1, 20)), (*)(57.63537301586917, (getindex)(ˍ₋arg1, 21))), (getinde
x)(ˍ₋arg1, 21))
                                else
                                    (*)((+)((*)(-57.63537301586917, (getind
ex)(ˍ₋arg1, 21)), (*)(57.63537301586917, (getindex)(ˍ₋arg1, 22))), (getinde
x)(ˍ₋arg1, 21))
                                end)
                        ˍ₋out[22] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22
), 0)
                                    (*)((+)((*)(-88.64069899745934, (getind
ex)(ˍ₋arg1, 21)), (*)(88.64069899745934, (getindex)(ˍ₋arg1, 22))), (getinde
x)(ˍ₋arg1, 22))
                                else
                                    (*)((+)((*)(-88.64069899745934, (getind
ex)(ˍ₋arg1, 22)), (*)(88.64069899745934, (getindex)(ˍ₋arg1, 23))), (getinde
x)(ˍ₋arg1, 22))
                                end)
                        ˍ₋out[23] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23
), 0)
                                    (*)((+)((*)(-137.8602738401593, (getind
ex)(ˍ₋arg1, 22)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 23))), (getinde
x)(ˍ₋arg1, 23))
                                else
                                    (*)((+)((*)(-137.8602738401593, (getind
ex)(ˍ₋arg1, 23)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 24))), (getinde
x)(ˍ₋arg1, 23))
                                end)
                        ˍ₋out[24] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24
), 0)
                                    (*)((+)((*)(-215.96618521801062, (getin
dex)(ˍ₋arg1, 23)), (*)(215.96618521801062, (getindex)(ˍ₋arg1, 24))), (getin
dex)(ˍ₋arg1, 24))
                                else
                                    (*)((+)((*)(-215.96618521801062, (getin
dex)(ˍ₋arg1, 24)), (*)(215.96618521801062, (getindex)(ˍ₋arg1, 25))), (getin
dex)(ˍ₋arg1, 24))
                                end)
                        ˍ₋out[25] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25
), 0)
                                    (*)((+)((*)(-339.89383203987967, (getin
dex)(ˍ₋arg1, 24)), (*)(339.89383203987967, (getindex)(ˍ₋arg1, 25))), (getin
dex)(ˍ₋arg1, 25))
                                else
                                    (*)((+)((*)(-339.89383203987967, (getin
dex)(ˍ₋arg1, 25)), (*)(339.89383203987967, (getindex)(ˍ₋arg1, 26))), (getin
dex)(ˍ₋arg1, 25))
                                end)
                        ˍ₋out[26] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26
), 0)
                                    (*)((+)((*)(-536.5139606774583, (getind
ex)(ˍ₋arg1, 25)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 26))), (getinde
x)(ˍ₋arg1, 26))
                                else
                                    (*)((+)((*)(-536.5139606774583, (getind
ex)(ˍ₋arg1, 26)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 27))), (getinde
x)(ˍ₋arg1, 26))
                                end)
                        ˍ₋out[27] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27
), 0)
                                    (*)((+)((*)(-510.5729767825508, (getind
ex)(ˍ₋arg1, 26)), (*)(510.5729767825508, (getindex)(ˍ₋arg1, 27))), (getinde
x)(ˍ₋arg1, 27))
                                else
                                    (*)((+)((*)(-510.5729767825508, (getind
ex)(ˍ₋arg1, 27)), (*)(510.5729767825508, (getindex)(ˍ₋arg1, 28))), (getinde
x)(ˍ₋arg1, 27))
                                end)
                        ˍ₋out[28] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28
), 0)
                                    (*)((+)((*)(-404.4287934927362, (getind
ex)(ˍ₋arg1, 27)), (*)(404.4287934927362, (getindex)(ˍ₋arg1, 28))), (getinde
x)(ˍ₋arg1, 28))
                                else
                                    (*)((+)((*)(-404.4287934927362, (getind
ex)(ˍ₋arg1, 28)), (*)(404.4287934927362, var"(u(t))[30]")), (getindex)(ˍ₋ar
g1, 28))
                                end)
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing,
 nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("ge
tindex(u(t), 2)"), Symbol("getindex(u(t), 3)"), Symbol("getindex(u(t), 4)")
, Symbol("getindex(u(t), 5)"), Symbol("getindex(u(t), 6)"), Symbol("getinde
x(u(t), 7)"), Symbol("getindex(u(t), 8)"), Symbol("getindex(u(t), 9)"), Sym
bol("getindex(u(t), 10)"), Symbol("getindex(u(t), 11)")  …  Symbol("getinde
x(u(t), 20)"), Symbol("getindex(u(t), 21)"), Symbol("getindex(u(t), 22)"), 
Symbol("getindex(u(t), 23)"), Symbol("getindex(u(t), 24)"), Symbol("getinde
x(u(t), 25)"), Symbol("getindex(u(t), 26)"), Symbol("getindex(u(t), 27)"), 
Symbol("getindex(u(t), 28)"), Symbol("getindex(u(t), 29)")], :t, nothing, M
odelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolkit.ODESy
stem, Dict{Any, Any}}(false, Core.Box(Symbolics.Equation[(u(t))[30] ~ 3.451
847873415997 / (1 + t) + 1.6499474476248417(u(t))[28] - 0.3758367706775086(
u(t))[27] - 3.72595855036333(u(t))[29], (u(t))[1] ~ 1.6499474476248412(u(t)
)[3] - 3.725958550363329(u(t))[2] - 0.3758367706775085(u(t))[4]]), Modeling
Toolkit.ODESystem(Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((
u(t))[2] > 0, (510.5729767825508(u(t))[2] - 510.5729767825508(u(t))[1])*(u(
t))[2], (510.5729767825508(u(t))[3] - 510.5729767825508(u(t))[2])*(u(t))[2]
), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (536.5139606774583(u
(t))[3] - 536.5139606774583(u(t))[2])*(u(t))[3], (536.5139606774583(u(t))[4
] - 536.5139606774583(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -i
felse((u(t))[4] > 0, (339.8938320398733(u(t))[4] - 339.8938320398733(u(t))[
3])*(u(t))[4], (339.8938320398733(u(t))[5] - 339.8938320398733(u(t))[4])*(u
(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (215.96618521
800934(u(t))[5] - 215.96618521800934(u(t))[4])*(u(t))[5], (215.966185218009
34(u(t))[6] - 215.96618521800934(u(t))[5])*(u(t))[5]), Differential(t)((u(t
))[6]) ~ -ifelse((u(t))[6] > 0, (137.8602738401593(u(t))[6] - 137.860273840
1593(u(t))[5])*(u(t))[6], (137.8602738401593(u(t))[7] - 137.8602738401593(u
(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (8
8.64069899746065(u(t))[7] - 88.64069899746065(u(t))[6])*(u(t))[7], (88.6406
9899746065(u(t))[8] - 88.64069899746065(u(t))[7])*(u(t))[7]), Differential(
t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (57.63537301586889(u(t))[8] - 57.635
37301586889(u(t))[7])*(u(t))[8], (57.63537301586889(u(t))[9] - 57.635373015
86889(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] 
> 0, (38.121532476653655(u(t))[9] - 38.121532476653655(u(t))[8])*(u(t))[9],
 (38.121532476653655(u(t))[10] - 38.121532476653655(u(t))[9])*(u(t))[9]), D
ifferential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.8680677500096(u(t)
)[10] - 25.8680677500096(u(t))[9])*(u(t))[10], (25.8680677500096(u(t))[11] 
- 25.8680677500096(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -i
felse((u(t))[11] > 0, (18.218108062641644(u(t))[11] - 18.218108062641644(u(
t))[10])*(u(t))[11], (18.218108062641644(u(t))[12] - 18.218108062641644(u(t
))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 
0, (25.868067750009544(u(t))[20] - 25.868067750009544(u(t))[19])*(u(t))[20]
, (25.868067750009544(u(t))[21] - 25.868067750009544(u(t))[20])*(u(t))[20])
, Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (38.121532476653655
(u(t))[21] - 38.121532476653655(u(t))[20])*(u(t))[21], (38.121532476653655(
u(t))[22] - 38.121532476653655(u(t))[21])*(u(t))[21]), Differential(t)((u(t
))[22]) ~ -ifelse((u(t))[22] > 0, (57.63537301586917(u(t))[22] - 57.6353730
1586917(u(t))[21])*(u(t))[22], (57.63537301586917(u(t))[23] - 57.6353730158
6917(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[2
3] > 0, (88.64069899745934(u(t))[23] - 88.64069899745934(u(t))[22])*(u(t))[
23], (88.64069899745934(u(t))[24] - 88.64069899745934(u(t))[23])*(u(t))[23]
), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (137.8602738401593
(u(t))[24] - 137.8602738401593(u(t))[23])*(u(t))[24], (137.8602738401593(u(
t))[25] - 137.8602738401593(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[
25]) ~ -ifelse((u(t))[25] > 0, (215.96618521801062(u(t))[25] - 215.96618521
801062(u(t))[24])*(u(t))[25], (215.96618521801062(u(t))[26] - 215.966185218
01062(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[
26] > 0, (339.89383203987967(u(t))[26] - 339.89383203987967(u(t))[25])*(u(t
))[26], (339.89383203987967(u(t))[27] - 339.89383203987967(u(t))[26])*(u(t)
)[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (536.51396067
74583(u(t))[27] - 536.5139606774583(u(t))[26])*(u(t))[27], (536.51396067745
83(u(t))[28] - 536.5139606774583(u(t))[27])*(u(t))[27]), Differential(t)((u
(t))[28]) ~ -ifelse((u(t))[28] > 0, (510.5729767825508(u(t))[28] - 510.5729
767825508(u(t))[27])*(u(t))[28], (510.5729767825508(u(t))[29] - 510.5729767
825508(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))
[29] > 0, (404.4287934927362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(t)
)[29], (404.4287934927362(u(t))[30] - 404.4287934927362(u(t))[29])*(u(t))[2
9])], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4],
 (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[
11]  …  (u(t))[20], (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[
25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29]], Any[], Dict{Any, Any}
(:u => u(t)), Any[], Symbolics.Equation[(u(t))[30] ~ 3.451847873415997 / (1
 + t) + 1.6499474476248417(u(t))[28] - 0.3758367706775086(u(t))[27] - 3.725
95855036333(u(t))[29], (u(t))[1] ~ 1.6499474476248412(u(t))[3] - 3.72595855
0363329(u(t))[2] - 0.3758367706775085(u(t))[4]], Base.RefValue{Vector{Symbo
lics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef
, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefV
alue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefVa
lue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys1, M
odelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.6645238567001591
, (u(t))[18] => 0.7576999316909356, (u(t))[8] => 0.0311664502774546, (u(t))
[10] => 0.07474880024081432, (u(t))[27] => 0.9949412201485321, (u(t))[28] =
> 0.9968051045453842, (u(t))[2] => 0.001236311578317384, (u(t))[24] => 0.98
01150492065314, (u(t))[30] => 1.0012363115783174, (u(t))[21] => 0.925251199
7591857…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCal
lback[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[], Symb
olics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLin
es.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines
.EdgeAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlig
nedGrid, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDESystem
, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodOfLines
.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}(MethodOfLines.VariableM
ap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}
[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tu
ple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUti
ls.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sy
m{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sy
m{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Re
al, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, Symboli
cUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{Symboli
cUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}
}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))
[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22]
, (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (
u(t))[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{Da
taType, Any}}, Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.00391716
7752596873, 0.006200391950338835, 0.009801358083433409, 0.01546110097282343
8, 0.024308800614114, 0.0380240999407952, 0.059009712490737665, 0.090487887
99089097  …  0.909512112009109, 0.9409902875092624, 0.9619759000592047, 0.9
75691199385886, 0.9845388990271766, 0.9901986419165666, 0.9937996080496612,
 0.9960828322474031, 0.9975273768433652, 1.0]), Dict{SymbolicUtils.Sym{Real
, Base.ImmutableDict{DataType, Any}}, Vector{Float64}}(x => [-0.00123631157
8317384, 0.001236311578317384, 0.0031948954546158204, 0.005058779851467854,
 0.008000875016886122, 0.012631229528128424, 0.01988495079346872, 0.0311664
502774546, 0.04851690621576643, 0.07474880024081432  …  0.9252511997591857,
 0.9514830937842336, 0.9688335497225453, 0.9801150492065314, 0.987368770471
8717, 0.9919991249831139, 0.9949412201485321, 0.9968051045453842, 0.9987636
884216826, 1.0012363115783174]), Dict{SymbolicUtils.Sym{Real, Base.Immutabl
eDict{DataType, Any}}, Vector{Float64}}(x => [0.002472623156634768]), Dict{
SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndic
es{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((29,))), Dict{
SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndic
es{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), Meth
odOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.
ScalarizedDiscretization}(Dict{Symbolics.Num, Vector{Float64}}(x => [0.0, 0
.002472623156634768, 0.003917167752596873, 0.006200391950338835, 0.00980135
8083433409, 0.015461100972823438, 0.024308800614114, 0.0380240999407952, 0.
059009712490737665, 0.09048788799089097  …  0.909512112009109, 0.9409902875
092624, 0.9619759000592047, 0.975691199385886, 0.9845388990271766, 0.990198
6419165666, 0.9937996080496612, 0.9960828322474031, 0.9975273768433652, 1.0
]), t, 2, MethodOfLines.UpwindScheme(1), MethodOfLines.EdgeAlignedGrid(), t
rue, false, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Un
ion{}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symb
olics.Equation[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) 
~ 0], Symbolics.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1
 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0)
, Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.
Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[],
 :pdesys1, nothing), false, Base.RefValue{Any}(nothing)), ModelingToolkit.S
ystemStructures.TearingState{ModelingToolkit.ODESystem}(ModelingToolkit.ODE
System(Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 
0, (510.5729767825508(u(t))[2] - 510.5729767825508(u(t))[1])*(u(t))[2], (51
0.5729767825508(u(t))[3] - 510.5729767825508(u(t))[2])*(u(t))[2]), Differen
tial(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (536.5139606774583(u(t))[3] - 5
36.5139606774583(u(t))[2])*(u(t))[3], (536.5139606774583(u(t))[4] - 536.513
9606774583(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t)
)[4] > 0, (339.8938320398733(u(t))[4] - 339.8938320398733(u(t))[3])*(u(t))[
4], (339.8938320398733(u(t))[5] - 339.8938320398733(u(t))[4])*(u(t))[4]), D
ifferential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (215.96618521800934(u(t)
)[5] - 215.96618521800934(u(t))[4])*(u(t))[5], (215.96618521800934(u(t))[6]
 - 215.96618521800934(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -i
felse((u(t))[6] > 0, (137.8602738401593(u(t))[6] - 137.8602738401593(u(t))[
5])*(u(t))[6], (137.8602738401593(u(t))[7] - 137.8602738401593(u(t))[6])*(u
(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (88.640698997
46065(u(t))[7] - 88.64069899746065(u(t))[6])*(u(t))[7], (88.64069899746065(
u(t))[8] - 88.64069899746065(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8
]) ~ -ifelse((u(t))[8] > 0, (57.63537301586889(u(t))[8] - 57.63537301586889
(u(t))[7])*(u(t))[8], (57.63537301586889(u(t))[9] - 57.63537301586889(u(t))
[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (38.12
1532476653655(u(t))[9] - 38.121532476653655(u(t))[8])*(u(t))[9], (38.121532
476653655(u(t))[10] - 38.121532476653655(u(t))[9])*(u(t))[9]), Differential
(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.8680677500096(u(t))[10] - 25.
8680677500096(u(t))[9])*(u(t))[10], (25.8680677500096(u(t))[11] - 25.868067
7500096(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t)
)[11] > 0, (18.218108062641644(u(t))[11] - 18.218108062641644(u(t))[10])*(u
(t))[11], (18.218108062641644(u(t))[12] - 18.218108062641644(u(t))[11])*(u(
t))[11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.8680
67750009544(u(t))[20] - 25.868067750009544(u(t))[19])*(u(t))[20], (25.86806
7750009544(u(t))[21] - 25.868067750009544(u(t))[20])*(u(t))[20]), Different
ial(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (38.121532476653655(u(t))[21] 
- 38.121532476653655(u(t))[20])*(u(t))[21], (38.121532476653655(u(t))[22] -
 38.121532476653655(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -
ifelse((u(t))[22] > 0, (57.63537301586917(u(t))[22] - 57.63537301586917(u(t
))[21])*(u(t))[22], (57.63537301586917(u(t))[23] - 57.63537301586917(u(t))[
22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (88
.64069899745934(u(t))[23] - 88.64069899745934(u(t))[22])*(u(t))[23], (88.64
069899745934(u(t))[24] - 88.64069899745934(u(t))[23])*(u(t))[23]), Differen
tial(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (137.8602738401593(u(t))[24] 
- 137.8602738401593(u(t))[23])*(u(t))[24], (137.8602738401593(u(t))[25] - 1
37.8602738401593(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ife
lse((u(t))[25] > 0, (215.96618521801062(u(t))[25] - 215.96618521801062(u(t)
)[24])*(u(t))[25], (215.96618521801062(u(t))[26] - 215.96618521801062(u(t))
[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (3
39.89383203987967(u(t))[26] - 339.89383203987967(u(t))[25])*(u(t))[26], (33
9.89383203987967(u(t))[27] - 339.89383203987967(u(t))[26])*(u(t))[26]), Dif
ferential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (536.5139606774583(u(t))
[27] - 536.5139606774583(u(t))[26])*(u(t))[27], (536.5139606774583(u(t))[28
] - 536.5139606774583(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~
 -ifelse((u(t))[28] > 0, (510.5729767825508(u(t))[28] - 510.5729767825508(u
(t))[27])*(u(t))[28], (510.5729767825508(u(t))[29] - 510.5729767825508(u(t)
)[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (
404.4287934927362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(t))[29], (404
.4287934927362(u(t))[30] - 404.4287934927362(u(t))[29])*(u(t))[29])], t, Sy
mbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5],
 (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  (u(
t))[20], (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))
[26], (u(t))[27], (u(t))[28], (u(t))[29]], Any[], Dict{Any, Any}(:u => u(t)
), Any[], Symbolics.Equation[(u(t))[30] ~ 3.451847873415997 / (1 + t) + 1.6
499474476248417(u(t))[28] - 0.3758367706775086(u(t))[27] - 3.72595855036333
(u(t))[29], (u(t))[1] ~ 1.6499474476248412(u(t))[3] - 3.725958550363329(u(t
))[2] - 0.3758367706775085(u(t))[4]], Base.RefValue{Vector{Symbolics.Num}}(
Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), B
ase.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix
{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{
Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys1, ModelingTool
kit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.6645238567001591, (u(t))[18
] => 0.7576999316909356, (u(t))[8] => 0.0311664502774546, (u(t))[10] => 0.0
7474880024081432, (u(t))[27] => 0.9949412201485321, (u(t))[28] => 0.9968051
045453842, (u(t))[2] => 0.001236311578317384, (u(t))[24] => 0.9801150492065
314, (u(t))[30] => 1.0012363115783174, (u(t))[21] => 0.9252511997591857…), 
nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[Model
ingToolkit.SymbolicContinuousCallback(Symbolics.Equation[], Symbolics.Equat
ion[])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetad
ata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAligne
dGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, Me
thodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDESystem, Base.RefV
alue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSp
ace{1, 1, MethodOfLines.EdgeAlignedGrid}(MethodOfLines.VariableMap(Any[u(t,
 x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dic
t{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64
, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{Symb
olicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Bas
e.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicU
tils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.Im
mutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{
Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term
{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) =
> [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))
[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23
], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], 
(u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any
}}, Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.003917167752596873,
 0.006200391950338835, 0.009801358083433409, 0.015461100972823438, 0.024308
800614114, 0.0380240999407952, 0.059009712490737665, 0.09048788799089097  …
  0.909512112009109, 0.9409902875092624, 0.9619759000592047, 0.975691199385
886, 0.9845388990271766, 0.9901986419165666, 0.9937996080496612, 0.99608283
22474031, 0.9975273768433652, 1.0]), Dict{SymbolicUtils.Sym{Real, Base.Immu
tableDict{DataType, Any}}, Vector{Float64}}(x => [-0.001236311578317384, 0.
001236311578317384, 0.0031948954546158204, 0.005058779851467854, 0.00800087
5016886122, 0.012631229528128424, 0.01988495079346872, 0.0311664502774546, 
0.04851690621576643, 0.07474880024081432  …  0.9252511997591857, 0.95148309
37842336, 0.9688335497225453, 0.9801150492065314, 0.9873687704718717, 0.991
9991249831139, 0.9949412201485321, 0.9968051045453842, 0.9987636884216826, 
1.0012363115783174]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataT
ype, Any}}, Vector{Float64}}(x => [0.002472623156634768]), Dict{SymbolicUti
ls.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple
{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((29,))), Dict{SymbolicUti
ls.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple
{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), MethodOfLines.M
OLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.ScalarizedD
iscretization}(Dict{Symbolics.Num, Vector{Float64}}(x => [0.0, 0.0024726231
56634768, 0.003917167752596873, 0.006200391950338835, 0.009801358083433409,
 0.015461100972823438, 0.024308800614114, 0.0380240999407952, 0.05900971249
0737665, 0.09048788799089097  …  0.909512112009109, 0.9409902875092624, 0.9
619759000592047, 0.975691199385886, 0.9845388990271766, 0.9901986419165666,
 0.9937996080496612, 0.9960828322474031, 0.9975273768433652, 1.0]), t, 2, M
ethodOfLines.UpwindScheme(1), MethodOfLines.EdgeAlignedGrid(), true, false,
 MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tupl
e{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equat
ion[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbo
lics.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + t)], Sym
bolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolics
.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x)
], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[], :pdesys1, 
nothing), false, Base.RefValue{Any}(nothing)), nothing, ModelingToolkit.Sub
stitutions(Symbolics.Equation[(u(t))[30] ~ 3.451847873415997 / (1 + t) + 1.
6499474476248417(u(t))[28] - 0.3758367706775086(u(t))[27] - 3.7259585503633
3(u(t))[29], (u(t))[1] ~ 1.6499474476248412(u(t))[3] - 3.725958550363329(u(
t))[2] - 0.3758367706775085(u(t))[4]], [Int64[], Int64[]], Symbolics.Equati
on[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (2412.9467252099535(
u(t))[2] + 191.89209878915642(u(t))[4] - 842.418579868587(u(t))[3])*(u(t))[
2], (510.5729767825508(u(t))[3] - 510.5729767825508(u(t))[2])*(u(t))[2]), D
ifferential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (536.5139606774583(u(t))
[3] - 536.5139606774583(u(t))[2])*(u(t))[3], (536.5139606774583(u(t))[4] - 
536.5139606774583(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifels
e((u(t))[4] > 0, (339.8938320398733(u(t))[4] - 339.8938320398733(u(t))[3])*
(u(t))[4], (339.8938320398733(u(t))[5] - 339.8938320398733(u(t))[4])*(u(t))
[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (215.966185218009
34(u(t))[5] - 215.96618521800934(u(t))[4])*(u(t))[5], (215.96618521800934(u
(t))[6] - 215.96618521800934(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6
]) ~ -ifelse((u(t))[6] > 0, (137.8602738401593(u(t))[6] - 137.8602738401593
(u(t))[5])*(u(t))[6], (137.8602738401593(u(t))[7] - 137.8602738401593(u(t))
[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (88.64
069899746065(u(t))[7] - 88.64069899746065(u(t))[6])*(u(t))[7], (88.64069899
746065(u(t))[8] - 88.64069899746065(u(t))[7])*(u(t))[7]), Differential(t)((
u(t))[8]) ~ -ifelse((u(t))[8] > 0, (57.63537301586889(u(t))[8] - 57.6353730
1586889(u(t))[7])*(u(t))[8], (57.63537301586889(u(t))[9] - 57.6353730158688
9(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0,
 (38.121532476653655(u(t))[9] - 38.121532476653655(u(t))[8])*(u(t))[9], (38
.121532476653655(u(t))[10] - 38.121532476653655(u(t))[9])*(u(t))[9]), Diffe
rential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.8680677500096(u(t))[10
] - 25.8680677500096(u(t))[9])*(u(t))[10], (25.8680677500096(u(t))[11] - 25
.8680677500096(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifels
e((u(t))[11] > 0, (18.218108062641644(u(t))[11] - 18.218108062641644(u(t))[
10])*(u(t))[11], (18.218108062641644(u(t))[12] - 18.218108062641644(u(t))[1
1])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (
25.868067750009544(u(t))[20] - 25.868067750009544(u(t))[19])*(u(t))[20], (2
5.868067750009544(u(t))[21] - 25.868067750009544(u(t))[20])*(u(t))[20]), Di
fferential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (38.121532476653655(u(t
))[21] - 38.121532476653655(u(t))[20])*(u(t))[21], (38.121532476653655(u(t)
)[22] - 38.121532476653655(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[2
2]) ~ -ifelse((u(t))[22] > 0, (57.63537301586917(u(t))[22] - 57.63537301586
917(u(t))[21])*(u(t))[22], (57.63537301586917(u(t))[23] - 57.63537301586917
(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] >
 0, (88.64069899745934(u(t))[23] - 88.64069899745934(u(t))[22])*(u(t))[23],
 (88.64069899745934(u(t))[24] - 88.64069899745934(u(t))[23])*(u(t))[23]), D
ifferential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (137.8602738401593(u(t
))[24] - 137.8602738401593(u(t))[23])*(u(t))[24], (137.8602738401593(u(t))[
25] - 137.8602738401593(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25])
 ~ -ifelse((u(t))[25] > 0, (215.96618521801062(u(t))[25] - 215.966185218010
62(u(t))[24])*(u(t))[25], (215.96618521801062(u(t))[26] - 215.9661852180106
2(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] 
> 0, (339.89383203987967(u(t))[26] - 339.89383203987967(u(t))[25])*(u(t))[2
6], (339.89383203987967(u(t))[27] - 339.89383203987967(u(t))[26])*(u(t))[26
]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (536.513960677458
3(u(t))[27] - 536.5139606774583(u(t))[26])*(u(t))[27], (536.5139606774583(u
(t))[28] - 536.5139606774583(u(t))[27])*(u(t))[27]), Differential(t)((u(t))
[28]) ~ -ifelse((u(t))[28] > 0, (510.5729767825508(u(t))[28] - 510.57297678
25508(u(t))[27])*(u(t))[28], (510.5729767825508(u(t))[29] - 510.57297678255
08(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29]
 > 0, (404.4287934927362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(t))[29
], (1396.026670766099 / (1 + t) + 667.2862555693342(u(t))[28] - 151.9992117
1531096(u(t))[27] - 1911.313714620122(u(t))[29])*(u(t))[29])])), Any[(u(t))
[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t
))[9], (u(t))[10], (u(t))[11]  …  Differential(t)((u(t))[20]), Differential
(t)((u(t))[21]), Differential(t)((u(t))[22]), Differential(t)((u(t))[23]), 
Differential(t)((u(t))[24]), Differential(t)((u(t))[25]), Differential(t)((
u(t))[26]), Differential(t)((u(t))[27]), Differential(t)((u(t))[28]), Diffe
rential(t)((u(t))[29])], ModelingToolkit.SystemStructures.SystemStructure(M
odelingToolkit.SystemStructures.DiffGraph(Union{Nothing, Int64}[29, 30, 31,
 32, 33, 34, 35, 36, 37, 38  …  nothing, nothing, nothing, nothing, nothing
, nothing, nothing, nothing, nothing, nothing], Union{Nothing, Int64}[nothi
ng, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing,
 nothing  …  19, 20, 21, 22, 23, 24, 25, 26, 27, 28]), ModelingToolkit.Syst
emStructures.DiffGraph(Union{Nothing, Int64}[nothing, nothing, nothing, not
hing, nothing, nothing, nothing, nothing, nothing, nothing  …  nothing, not
hing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothin
g], Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, noth
ing, nothing, nothing, nothing, nothing  …  nothing, nothing, nothing, noth
ing, nothing, nothing, nothing, nothing, nothing, nothing]), BipartiteGraph
 with (28, 56) (𝑠,𝑑)-vertices
   #  src      dst
  1   [1, 29]  [1]
  2   [2, 30]  [2]
  3   [3, 31]  [3]
  4   [4, 32]  [4]
  5   [5, 33]  [5]
  6   [6, 34]  [6]
  7   [7, 35]  [7]
  8   [8, 36]  [8]
  9   [9, 37]  [9]
  ⋮            
 48   ⋅        [20]
 49   ⋅        [21]
 50   ⋅        [22]
 51   ⋅        [23]
 52   ⋅        [24]
 53   ⋅        [25]
 54   ⋅        [26]
 55   ⋅        [27]
 56   ⋅        [28], BipartiteGraph with (30, 58) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    ∅
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    [30]
 55   ⋅    [30]
 56   ⋅    [30]
 57   ⋅    [29]
 58   ⋅    [30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[30] ~ 3.451847873415997 / (1 + t) + 1.6499474476248417(u(t))[28] - 0
.3758367706775086(u(t))[27] - 3.72595855036333(u(t))[29], (u(t))[1] ~ 1.649
9474476248412(u(t))[3] - 3.725958550363329(u(t))[2] - 0.3758367706775085(u(
t))[4]], [Int64[], Int64[]], Symbolics.Equation[Differential(t)((u(t))[2]) 
~ -ifelse((u(t))[2] > 0, (2412.9467252099535(u(t))[2] + 191.89209878915642(
u(t))[4] - 842.418579868587(u(t))[3])*(u(t))[2], (510.5729767825508(u(t))[3
] - 510.5729767825508(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -i
felse((u(t))[3] > 0, (536.5139606774583(u(t))[3] - 536.5139606774583(u(t))[
2])*(u(t))[3], (536.5139606774583(u(t))[4] - 536.5139606774583(u(t))[3])*(u
(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (339.89383203
98733(u(t))[4] - 339.8938320398733(u(t))[3])*(u(t))[4], (339.8938320398733(
u(t))[5] - 339.8938320398733(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5
]) ~ -ifelse((u(t))[5] > 0, (215.96618521800934(u(t))[5] - 215.966185218009
34(u(t))[4])*(u(t))[5], (215.96618521800934(u(t))[6] - 215.96618521800934(u
(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (1
37.8602738401593(u(t))[6] - 137.8602738401593(u(t))[5])*(u(t))[6], (137.860
2738401593(u(t))[7] - 137.8602738401593(u(t))[6])*(u(t))[6]), Differential(
t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (88.64069899746065(u(t))[7] - 88.640
69899746065(u(t))[6])*(u(t))[7], (88.64069899746065(u(t))[8] - 88.640698997
46065(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] 
> 0, (57.63537301586889(u(t))[8] - 57.63537301586889(u(t))[7])*(u(t))[8], (
57.63537301586889(u(t))[9] - 57.63537301586889(u(t))[8])*(u(t))[8]), Differ
ential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (38.121532476653655(u(t))[9] 
- 38.121532476653655(u(t))[8])*(u(t))[9], (38.121532476653655(u(t))[10] - 3
8.121532476653655(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifel
se((u(t))[10] > 0, (25.8680677500096(u(t))[10] - 25.8680677500096(u(t))[9])
*(u(t))[10], (25.8680677500096(u(t))[11] - 25.8680677500096(u(t))[10])*(u(t
))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.21810806
2641644(u(t))[11] - 18.218108062641644(u(t))[10])*(u(t))[11], (18.218108062
641644(u(t))[12] - 18.218108062641644(u(t))[11])*(u(t))[11])  …  Differenti
al(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.868067750009544(u(t))[20] -
 25.868067750009544(u(t))[19])*(u(t))[20], (25.868067750009544(u(t))[21] - 
25.868067750009544(u(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -i
felse((u(t))[21] > 0, (38.121532476653655(u(t))[21] - 38.121532476653655(u(
t))[20])*(u(t))[21], (38.121532476653655(u(t))[22] - 38.121532476653655(u(t
))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, 
(57.63537301586917(u(t))[22] - 57.63537301586917(u(t))[21])*(u(t))[22], (57
.63537301586917(u(t))[23] - 57.63537301586917(u(t))[22])*(u(t))[22]), Diffe
rential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (88.64069899745934(u(t))[2
3] - 88.64069899745934(u(t))[22])*(u(t))[23], (88.64069899745934(u(t))[24] 
- 88.64069899745934(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -
ifelse((u(t))[24] > 0, (137.8602738401593(u(t))[24] - 137.8602738401593(u(t
))[23])*(u(t))[24], (137.8602738401593(u(t))[25] - 137.8602738401593(u(t))[
24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (21
5.96618521801062(u(t))[25] - 215.96618521801062(u(t))[24])*(u(t))[25], (215
.96618521801062(u(t))[26] - 215.96618521801062(u(t))[25])*(u(t))[25]), Diff
erential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (339.89383203987967(u(t))
[26] - 339.89383203987967(u(t))[25])*(u(t))[26], (339.89383203987967(u(t))[
27] - 339.89383203987967(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]
) ~ -ifelse((u(t))[27] > 0, (536.5139606774583(u(t))[27] - 536.513960677458
3(u(t))[26])*(u(t))[27], (536.5139606774583(u(t))[28] - 536.5139606774583(u
(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0
, (510.5729767825508(u(t))[28] - 510.5729767825508(u(t))[27])*(u(t))[28], (
510.5729767825508(u(t))[29] - 510.5729767825508(u(t))[28])*(u(t))[28]), Dif
ferential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (404.4287934927362(u(t))
[29] - 404.4287934927362(u(t))[28])*(u(t))[29], (1396.026670766099 / (1 + t
) + 667.2862555693342(u(t))[28] - 151.99921171531096(u(t))[27] - 1911.31371
4620122(u(t))[29])*(u(t))[29])])), Dict{Any, Any}()), nothing, ModelingTool
kit.ODESystem(Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t)
)[2] > 0, (510.5729767825508(u(t))[2] - 510.5729767825508(u(t))[1])*(u(t))[
2], (510.5729767825508(u(t))[3] - 510.5729767825508(u(t))[2])*(u(t))[2]), D
ifferential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (536.5139606774583(u(t))
[3] - 536.5139606774583(u(t))[2])*(u(t))[3], (536.5139606774583(u(t))[4] - 
536.5139606774583(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifels
e((u(t))[4] > 0, (339.8938320398733(u(t))[4] - 339.8938320398733(u(t))[3])*
(u(t))[4], (339.8938320398733(u(t))[5] - 339.8938320398733(u(t))[4])*(u(t))
[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (215.966185218009
34(u(t))[5] - 215.96618521800934(u(t))[4])*(u(t))[5], (215.96618521800934(u
(t))[6] - 215.96618521800934(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6
]) ~ -ifelse((u(t))[6] > 0, (137.8602738401593(u(t))[6] - 137.8602738401593
(u(t))[5])*(u(t))[6], (137.8602738401593(u(t))[7] - 137.8602738401593(u(t))
[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (88.64
069899746065(u(t))[7] - 88.64069899746065(u(t))[6])*(u(t))[7], (88.64069899
746065(u(t))[8] - 88.64069899746065(u(t))[7])*(u(t))[7]), Differential(t)((
u(t))[8]) ~ -ifelse((u(t))[8] > 0, (57.63537301586889(u(t))[8] - 57.6353730
1586889(u(t))[7])*(u(t))[8], (57.63537301586889(u(t))[9] - 57.6353730158688
9(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0,
 (38.121532476653655(u(t))[9] - 38.121532476653655(u(t))[8])*(u(t))[9], (38
.121532476653655(u(t))[10] - 38.121532476653655(u(t))[9])*(u(t))[9]), Diffe
rential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.8680677500096(u(t))[10
] - 25.8680677500096(u(t))[9])*(u(t))[10], (25.8680677500096(u(t))[11] - 25
.8680677500096(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifels
e((u(t))[11] > 0, (18.218108062641644(u(t))[11] - 18.218108062641644(u(t))[
10])*(u(t))[11], (18.218108062641644(u(t))[12] - 18.218108062641644(u(t))[1
1])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (
25.868067750009544(u(t))[20] - 25.868067750009544(u(t))[19])*(u(t))[20], (2
5.868067750009544(u(t))[21] - 25.868067750009544(u(t))[20])*(u(t))[20]), Di
fferential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (38.121532476653655(u(t
))[21] - 38.121532476653655(u(t))[20])*(u(t))[21], (38.121532476653655(u(t)
)[22] - 38.121532476653655(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[2
2]) ~ -ifelse((u(t))[22] > 0, (57.63537301586917(u(t))[22] - 57.63537301586
917(u(t))[21])*(u(t))[22], (57.63537301586917(u(t))[23] - 57.63537301586917
(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] >
 0, (88.64069899745934(u(t))[23] - 88.64069899745934(u(t))[22])*(u(t))[23],
 (88.64069899745934(u(t))[24] - 88.64069899745934(u(t))[23])*(u(t))[23]), D
ifferential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (137.8602738401593(u(t
))[24] - 137.8602738401593(u(t))[23])*(u(t))[24], (137.8602738401593(u(t))[
25] - 137.8602738401593(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25])
 ~ -ifelse((u(t))[25] > 0, (215.96618521801062(u(t))[25] - 215.966185218010
62(u(t))[24])*(u(t))[25], (215.96618521801062(u(t))[26] - 215.9661852180106
2(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] 
> 0, (339.89383203987967(u(t))[26] - 339.89383203987967(u(t))[25])*(u(t))[2
6], (339.89383203987967(u(t))[27] - 339.89383203987967(u(t))[26])*(u(t))[26
]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (536.513960677458
3(u(t))[27] - 536.5139606774583(u(t))[26])*(u(t))[27], (536.5139606774583(u
(t))[28] - 536.5139606774583(u(t))[27])*(u(t))[27]), Differential(t)((u(t))
[28]) ~ -ifelse((u(t))[28] > 0, (510.5729767825508(u(t))[28] - 510.57297678
25508(u(t))[27])*(u(t))[28], (510.5729767825508(u(t))[29] - 510.57297678255
08(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29]
 > 0, (404.4287934927362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(t))[29
], (404.4287934927362(u(t))[30] - 404.4287934927362(u(t))[29])*(u(t))[29])]
, t, SymbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4], (u(
t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11] 
 …  (u(t))[20], (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25],
 (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29]], Any[], Dict{Any, Any}(:u 
=> u(t)), Any[], Symbolics.Equation[(u(t))[30] ~ 3.451847873415997 / (1 + t
) + 1.6499474476248417(u(t))[28] - 0.3758367706775086(u(t))[27] - 3.7259585
5036333(u(t))[29], (u(t))[1] ~ 1.6499474476248412(u(t))[3] - 3.725958550363
329(u(t))[2] - 0.3758367706775085(u(t))[4]], Base.RefValue{Vector{Symbolics
.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0,
 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue
{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{
Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys1, Model
ingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.6645238567001591, (u
(t))[18] => 0.7576999316909356, (u(t))[8] => 0.0311664502774546, (u(t))[10]
 => 0.07474880024081432, (u(t))[27] => 0.9949412201485321, (u(t))[28] => 0.
9968051045453842, (u(t))[2] => 0.001236311578317384, (u(t))[24] => 0.980115
0492065314, (u(t))[30] => 1.0012363115783174, (u(t))[21] => 0.9252511997591
857…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallbac
k[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[], Symbolic
s.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLines.M
OLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.Edg
eAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedG
rid, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDESystem, Ba
se.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.Dis
creteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}(MethodOfLines.VariableMap(A
ny[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x],
 t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{
Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.S
ym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Re
al, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{Sy
mbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, 
Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUti
ls.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUti
ls.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(
t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6],
 (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u
(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t)
)[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataTy
pe, Any}}, Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.003917167752
596873, 0.006200391950338835, 0.009801358083433409, 0.015461100972823438, 0
.024308800614114, 0.0380240999407952, 0.059009712490737665, 0.0904878879908
9097  …  0.909512112009109, 0.9409902875092624, 0.9619759000592047, 0.97569
1199385886, 0.9845388990271766, 0.9901986419165666, 0.9937996080496612, 0.9
960828322474031, 0.9975273768433652, 1.0]), Dict{SymbolicUtils.Sym{Real, Ba
se.ImmutableDict{DataType, Any}}, Vector{Float64}}(x => [-0.001236311578317
384, 0.001236311578317384, 0.0031948954546158204, 0.005058779851467854, 0.0
08000875016886122, 0.012631229528128424, 0.01988495079346872, 0.03116645027
74546, 0.04851690621576643, 0.07474880024081432  …  0.9252511997591857, 0.9
514830937842336, 0.9688335497225453, 0.9801150492065314, 0.9873687704718717
, 0.9919991249831139, 0.9949412201485321, 0.9968051045453842, 0.99876368842
16826, 1.0012363115783174]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDic
t{DataType, Any}}, Vector{Float64}}(x => [0.002472623156634768]), Dict{Symb
olicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1
, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((29,))), Dict{Symb
olicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1
, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), MethodOf
Lines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.Scal
arizedDiscretization}(Dict{Symbolics.Num, Vector{Float64}}(x => [0.0, 0.002
472623156634768, 0.003917167752596873, 0.006200391950338835, 0.009801358083
433409, 0.015461100972823438, 0.024308800614114, 0.0380240999407952, 0.0590
09712490737665, 0.09048788799089097  …  0.909512112009109, 0.94099028750926
24, 0.9619759000592047, 0.975691199385886, 0.9845388990271766, 0.9901986419
165666, 0.9937996080496612, 0.9960828322474031, 0.9975273768433652, 1.0]), 
t, 2, MethodOfLines.UpwindScheme(1), MethodOfLines.EdgeAlignedGrid(), true,
 false, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{
}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolic
s.Equation[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0]
, Symbolics.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + t
)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Sy
mbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[
u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[], :pd
esys1, nothing), false, Base.RefValue{Any}(nothing)), ModelingToolkit.Syste
mStructures.TearingState{ModelingToolkit.ODESystem}(ModelingToolkit.ODESyst
em(Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (
510.5729767825508(u(t))[2] - 510.5729767825508(u(t))[1])*(u(t))[2], (510.57
29767825508(u(t))[3] - 510.5729767825508(u(t))[2])*(u(t))[2]), Differential
(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (536.5139606774583(u(t))[3] - 536.5
139606774583(u(t))[2])*(u(t))[3], (536.5139606774583(u(t))[4] - 536.5139606
774583(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4]
 > 0, (339.8938320398733(u(t))[4] - 339.8938320398733(u(t))[3])*(u(t))[4], 
(339.8938320398733(u(t))[5] - 339.8938320398733(u(t))[4])*(u(t))[4]), Diffe
rential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (215.96618521800934(u(t))[5]
 - 215.96618521800934(u(t))[4])*(u(t))[5], (215.96618521800934(u(t))[6] - 2
15.96618521800934(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifels
e((u(t))[6] > 0, (137.8602738401593(u(t))[6] - 137.8602738401593(u(t))[5])*
(u(t))[6], (137.8602738401593(u(t))[7] - 137.8602738401593(u(t))[6])*(u(t))
[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (88.6406989974606
5(u(t))[7] - 88.64069899746065(u(t))[6])*(u(t))[7], (88.64069899746065(u(t)
)[8] - 88.64069899746065(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~
 -ifelse((u(t))[8] > 0, (57.63537301586889(u(t))[8] - 57.63537301586889(u(t
))[7])*(u(t))[8], (57.63537301586889(u(t))[9] - 57.63537301586889(u(t))[8])
*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (38.121532
476653655(u(t))[9] - 38.121532476653655(u(t))[8])*(u(t))[9], (38.1215324766
53655(u(t))[10] - 38.121532476653655(u(t))[9])*(u(t))[9]), Differential(t)(
(u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.8680677500096(u(t))[10] - 25.8680
677500096(u(t))[9])*(u(t))[10], (25.8680677500096(u(t))[11] - 25.8680677500
096(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11
] > 0, (18.218108062641644(u(t))[11] - 18.218108062641644(u(t))[10])*(u(t))
[11], (18.218108062641644(u(t))[12] - 18.218108062641644(u(t))[11])*(u(t))[
11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.86806775
0009544(u(t))[20] - 25.868067750009544(u(t))[19])*(u(t))[20], (25.868067750
009544(u(t))[21] - 25.868067750009544(u(t))[20])*(u(t))[20]), Differential(
t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (38.121532476653655(u(t))[21] - 38
.121532476653655(u(t))[20])*(u(t))[21], (38.121532476653655(u(t))[22] - 38.
121532476653655(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifel
se((u(t))[22] > 0, (57.63537301586917(u(t))[22] - 57.63537301586917(u(t))[2
1])*(u(t))[22], (57.63537301586917(u(t))[23] - 57.63537301586917(u(t))[22])
*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (88.640
69899745934(u(t))[23] - 88.64069899745934(u(t))[22])*(u(t))[23], (88.640698
99745934(u(t))[24] - 88.64069899745934(u(t))[23])*(u(t))[23]), Differential
(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (137.8602738401593(u(t))[24] - 13
7.8602738401593(u(t))[23])*(u(t))[24], (137.8602738401593(u(t))[25] - 137.8
602738401593(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse(
(u(t))[25] > 0, (215.96618521801062(u(t))[25] - 215.96618521801062(u(t))[24
])*(u(t))[25], (215.96618521801062(u(t))[26] - 215.96618521801062(u(t))[25]
)*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (339.8
9383203987967(u(t))[26] - 339.89383203987967(u(t))[25])*(u(t))[26], (339.89
383203987967(u(t))[27] - 339.89383203987967(u(t))[26])*(u(t))[26]), Differe
ntial(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (536.5139606774583(u(t))[27]
 - 536.5139606774583(u(t))[26])*(u(t))[27], (536.5139606774583(u(t))[28] - 
536.5139606774583(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -if
else((u(t))[28] > 0, (510.5729767825508(u(t))[28] - 510.5729767825508(u(t))
[27])*(u(t))[28], (510.5729767825508(u(t))[29] - 510.5729767825508(u(t))[28
])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (404.
4287934927362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(t))[29], (404.428
7934927362(u(t))[30] - 404.4287934927362(u(t))[29])*(u(t))[29])], t, Symbol
icUtils.Term{Real, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(
t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[
20], (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26]
, (u(t))[27], (u(t))[28], (u(t))[29]], Any[], Dict{Any, Any}(:u => u(t)), A
ny[], Symbolics.Equation[(u(t))[30] ~ 3.451847873415997 / (1 + t) + 1.64994
74476248417(u(t))[28] - 0.3758367706775086(u(t))[27] - 3.72595855036333(u(t
))[29], (u(t))[1] ~ 1.6499474476248412(u(t))[3] - 3.725958550363329(u(t))[2
] - 0.3758367706775085(u(t))[4]], Base.RefValue{Vector{Symbolics.Num}}(Symb
olics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.
RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Sym
bolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symb
olics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys1, ModelingToolkit.
ODESystem[], Dict{Any, Any}((u(t))[17] => 0.6645238567001591, (u(t))[18] =>
 0.7576999316909356, (u(t))[8] => 0.0311664502774546, (u(t))[10] => 0.07474
880024081432, (u(t))[27] => 0.9949412201485321, (u(t))[28] => 0.99680510454
53842, (u(t))[2] => 0.001236311578317384, (u(t))[24] => 0.9801150492065314,
 (u(t))[30] => 1.0012363115783174, (u(t))[21] => 0.9252511997591857…), noth
ing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingT
oolkit.SymbolicContinuousCallback(Symbolics.Equation[], Symbolics.Equation[
])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{
Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGri
d}, MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, Method
OfLines.ScalarizedDiscretization}, ModelingToolkit.PDESystem, Base.RefValue
{Any}, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{
1, 1, MethodOfLines.EdgeAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)]
, SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{Sy
mbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Fl
oat64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{Symbolic
Utils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.Im
mutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils
.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.Immuta
bleDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real
, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Rea
l, Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(
u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7],
 (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23], (
u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t
))[30]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, 
Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.003917167752596873, 0.0
06200391950338835, 0.009801358083433409, 0.015461100972823438, 0.0243088006
14114, 0.0380240999407952, 0.059009712490737665, 0.09048788799089097  …  0.
909512112009109, 0.9409902875092624, 0.9619759000592047, 0.975691199385886,
 0.9845388990271766, 0.9901986419165666, 0.9937996080496612, 0.996082832247
4031, 0.9975273768433652, 1.0]), Dict{SymbolicUtils.Sym{Real, Base.Immutabl
eDict{DataType, Any}}, Vector{Float64}}(x => [-0.001236311578317384, 0.0012
36311578317384, 0.0031948954546158204, 0.005058779851467854, 0.008000875016
886122, 0.012631229528128424, 0.01988495079346872, 0.0311664502774546, 0.04
851690621576643, 0.07474880024081432  …  0.9252511997591857, 0.951483093784
2336, 0.9688335497225453, 0.9801150492065314, 0.9873687704718717, 0.9919991
249831139, 0.9949412201485321, 0.9968051045453842, 0.9987636884216826, 1.00
12363115783174]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType,
 Any}}, Vector{Float64}}(x => [0.002472623156634768]), Dict{SymbolicUtils.T
erm{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Bas
e.OneTo{Int64}}}}(u(t, x) => CartesianIndices((29,))), Dict{SymbolicUtils.T
erm{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Bas
e.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), MethodOfLines.MOLFi
niteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscr
etization}(Dict{Symbolics.Num, Vector{Float64}}(x => [0.0, 0.00247262315663
4768, 0.003917167752596873, 0.006200391950338835, 0.009801358083433409, 0.0
15461100972823438, 0.024308800614114, 0.0380240999407952, 0.059009712490737
665, 0.09048788799089097  …  0.909512112009109, 0.9409902875092624, 0.96197
59000592047, 0.975691199385886, 0.9845388990271766, 0.9901986419165666, 0.9
937996080496612, 0.9960828322474031, 0.9975273768433652, 1.0]), t, 2, Metho
dOfLines.UpwindScheme(1), MethodOfLines.EdgeAlignedGrid(), true, false, Met
hodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{},
 NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equation[
Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics
.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + t)], Symboli
cs.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolics.Var
DomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x)], S
ciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[], :pdesys1, noth
ing), false, Base.RefValue{Any}(nothing)), nothing, ModelingToolkit.Substit
utions(Symbolics.Equation[(u(t))[30] ~ 3.451847873415997 / (1 + t) + 1.6499
474476248417(u(t))[28] - 0.3758367706775086(u(t))[27] - 3.72595855036333(u(
t))[29], (u(t))[1] ~ 1.6499474476248412(u(t))[3] - 3.725958550363329(u(t))[
2] - 0.3758367706775085(u(t))[4]], [Int64[], Int64[]], Symbolics.Equation[D
ifferential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (2412.9467252099535(u(t)
)[2] + 191.89209878915642(u(t))[4] - 842.418579868587(u(t))[3])*(u(t))[2], 
(510.5729767825508(u(t))[3] - 510.5729767825508(u(t))[2])*(u(t))[2]), Diffe
rential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (536.5139606774583(u(t))[3] 
- 536.5139606774583(u(t))[2])*(u(t))[3], (536.5139606774583(u(t))[4] - 536.
5139606774583(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u
(t))[4] > 0, (339.8938320398733(u(t))[4] - 339.8938320398733(u(t))[3])*(u(t
))[4], (339.8938320398733(u(t))[5] - 339.8938320398733(u(t))[4])*(u(t))[4])
, Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (215.96618521800934(u
(t))[5] - 215.96618521800934(u(t))[4])*(u(t))[5], (215.96618521800934(u(t))
[6] - 215.96618521800934(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~
 -ifelse((u(t))[6] > 0, (137.8602738401593(u(t))[6] - 137.8602738401593(u(t
))[5])*(u(t))[6], (137.8602738401593(u(t))[7] - 137.8602738401593(u(t))[6])
*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (88.640698
99746065(u(t))[7] - 88.64069899746065(u(t))[6])*(u(t))[7], (88.640698997460
65(u(t))[8] - 88.64069899746065(u(t))[7])*(u(t))[7]), Differential(t)((u(t)
)[8]) ~ -ifelse((u(t))[8] > 0, (57.63537301586889(u(t))[8] - 57.63537301586
889(u(t))[7])*(u(t))[8], (57.63537301586889(u(t))[9] - 57.63537301586889(u(
t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (38
.121532476653655(u(t))[9] - 38.121532476653655(u(t))[8])*(u(t))[9], (38.121
532476653655(u(t))[10] - 38.121532476653655(u(t))[9])*(u(t))[9]), Different
ial(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.8680677500096(u(t))[10] - 
25.8680677500096(u(t))[9])*(u(t))[10], (25.8680677500096(u(t))[11] - 25.868
0677500096(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u
(t))[11] > 0, (18.218108062641644(u(t))[11] - 18.218108062641644(u(t))[10])
*(u(t))[11], (18.218108062641644(u(t))[12] - 18.218108062641644(u(t))[11])*
(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.8
68067750009544(u(t))[20] - 25.868067750009544(u(t))[19])*(u(t))[20], (25.86
8067750009544(u(t))[21] - 25.868067750009544(u(t))[20])*(u(t))[20]), Differ
ential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (38.121532476653655(u(t))[2
1] - 38.121532476653655(u(t))[20])*(u(t))[21], (38.121532476653655(u(t))[22
] - 38.121532476653655(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) 
~ -ifelse((u(t))[22] > 0, (57.63537301586917(u(t))[22] - 57.63537301586917(
u(t))[21])*(u(t))[22], (57.63537301586917(u(t))[23] - 57.63537301586917(u(t
))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, 
(88.64069899745934(u(t))[23] - 88.64069899745934(u(t))[22])*(u(t))[23], (88
.64069899745934(u(t))[24] - 88.64069899745934(u(t))[23])*(u(t))[23]), Diffe
rential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (137.8602738401593(u(t))[2
4] - 137.8602738401593(u(t))[23])*(u(t))[24], (137.8602738401593(u(t))[25] 
- 137.8602738401593(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -
ifelse((u(t))[25] > 0, (215.96618521801062(u(t))[25] - 215.96618521801062(u
(t))[24])*(u(t))[25], (215.96618521801062(u(t))[26] - 215.96618521801062(u(
t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0,
 (339.89383203987967(u(t))[26] - 339.89383203987967(u(t))[25])*(u(t))[26], 
(339.89383203987967(u(t))[27] - 339.89383203987967(u(t))[26])*(u(t))[26]), 
Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (536.5139606774583(u(
t))[27] - 536.5139606774583(u(t))[26])*(u(t))[27], (536.5139606774583(u(t))
[28] - 536.5139606774583(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]
) ~ -ifelse((u(t))[28] > 0, (510.5729767825508(u(t))[28] - 510.572976782550
8(u(t))[27])*(u(t))[28], (510.5729767825508(u(t))[29] - 510.5729767825508(u
(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0
, (404.4287934927362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(t))[29], (
1396.026670766099 / (1 + t) + 667.2862555693342(u(t))[28] - 151.99921171531
096(u(t))[27] - 1911.313714620122(u(t))[29])*(u(t))[29])])), Any[(u(t))[2],
 (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9
], (u(t))[10], (u(t))[11]  …  Differential(t)((u(t))[20]), Differential(t)(
(u(t))[21]), Differential(t)((u(t))[22]), Differential(t)((u(t))[23]), Diff
erential(t)((u(t))[24]), Differential(t)((u(t))[25]), Differential(t)((u(t)
)[26]), Differential(t)((u(t))[27]), Differential(t)((u(t))[28]), Different
ial(t)((u(t))[29])], ModelingToolkit.SystemStructures.SystemStructure(Model
ingToolkit.SystemStructures.DiffGraph(Union{Nothing, Int64}[29, 30, 31, 32,
 33, 34, 35, 36, 37, 38  …  nothing, nothing, nothing, nothing, nothing, no
thing, nothing, nothing, nothing, nothing], Union{Nothing, Int64}[nothing, 
nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, not
hing  …  19, 20, 21, 22, 23, 24, 25, 26, 27, 28]), ModelingToolkit.SystemSt
ructures.DiffGraph(Union{Nothing, Int64}[nothing, nothing, nothing, nothing
, nothing, nothing, nothing, nothing, nothing, nothing  …  nothing, nothing
, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing], 
Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, nothing,
 nothing, nothing, nothing, nothing  …  nothing, nothing, nothing, nothing,
 nothing, nothing, nothing, nothing, nothing, nothing]), BipartiteGraph wit
h (28, 56) (𝑠,𝑑)-vertices
   #  src      dst
  1   [1, 29]  [1]
  2   [2, 30]  [2]
  3   [3, 31]  [3]
  4   [4, 32]  [4]
  5   [5, 33]  [5]
  6   [6, 34]  [6]
  7   [7, 35]  [7]
  8   [8, 36]  [8]
  9   [9, 37]  [9]
  ⋮            
 48   ⋅        [20]
 49   ⋅        [21]
 50   ⋅        [22]
 51   ⋅        [23]
 52   ⋅        [24]
 53   ⋅        [25]
 54   ⋅        [26]
 55   ⋅        [27]
 56   ⋅        [28], BipartiteGraph with (30, 58) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    ∅
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    [30]
 55   ⋅    [30]
 56   ⋅    [30]
 57   ⋅    [29]
 58   ⋅    [30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[30] ~ 3.451847873415997 / (1 + t) + 1.6499474476248417(u(t))[28] - 0
.3758367706775086(u(t))[27] - 3.72595855036333(u(t))[29], (u(t))[1] ~ 1.649
9474476248412(u(t))[3] - 3.725958550363329(u(t))[2] - 0.3758367706775085(u(
t))[4]], [Int64[], Int64[]], Symbolics.Equation[Differential(t)((u(t))[2]) 
~ -ifelse((u(t))[2] > 0, (2412.9467252099535(u(t))[2] + 191.89209878915642(
u(t))[4] - 842.418579868587(u(t))[3])*(u(t))[2], (510.5729767825508(u(t))[3
] - 510.5729767825508(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -i
felse((u(t))[3] > 0, (536.5139606774583(u(t))[3] - 536.5139606774583(u(t))[
2])*(u(t))[3], (536.5139606774583(u(t))[4] - 536.5139606774583(u(t))[3])*(u
(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (339.89383203
98733(u(t))[4] - 339.8938320398733(u(t))[3])*(u(t))[4], (339.8938320398733(
u(t))[5] - 339.8938320398733(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5
]) ~ -ifelse((u(t))[5] > 0, (215.96618521800934(u(t))[5] - 215.966185218009
34(u(t))[4])*(u(t))[5], (215.96618521800934(u(t))[6] - 215.96618521800934(u
(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (1
37.8602738401593(u(t))[6] - 137.8602738401593(u(t))[5])*(u(t))[6], (137.860
2738401593(u(t))[7] - 137.8602738401593(u(t))[6])*(u(t))[6]), Differential(
t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (88.64069899746065(u(t))[7] - 88.640
69899746065(u(t))[6])*(u(t))[7], (88.64069899746065(u(t))[8] - 88.640698997
46065(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] 
> 0, (57.63537301586889(u(t))[8] - 57.63537301586889(u(t))[7])*(u(t))[8], (
57.63537301586889(u(t))[9] - 57.63537301586889(u(t))[8])*(u(t))[8]), Differ
ential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (38.121532476653655(u(t))[9] 
- 38.121532476653655(u(t))[8])*(u(t))[9], (38.121532476653655(u(t))[10] - 3
8.121532476653655(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifel
se((u(t))[10] > 0, (25.8680677500096(u(t))[10] - 25.8680677500096(u(t))[9])
*(u(t))[10], (25.8680677500096(u(t))[11] - 25.8680677500096(u(t))[10])*(u(t
))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.21810806
2641644(u(t))[11] - 18.218108062641644(u(t))[10])*(u(t))[11], (18.218108062
641644(u(t))[12] - 18.218108062641644(u(t))[11])*(u(t))[11])  …  Differenti
al(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.868067750009544(u(t))[20] -
 25.868067750009544(u(t))[19])*(u(t))[20], (25.868067750009544(u(t))[21] - 
25.868067750009544(u(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -i
felse((u(t))[21] > 0, (38.121532476653655(u(t))[21] - 38.121532476653655(u(
t))[20])*(u(t))[21], (38.121532476653655(u(t))[22] - 38.121532476653655(u(t
))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, 
(57.63537301586917(u(t))[22] - 57.63537301586917(u(t))[21])*(u(t))[22], (57
.63537301586917(u(t))[23] - 57.63537301586917(u(t))[22])*(u(t))[22]), Diffe
rential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (88.64069899745934(u(t))[2
3] - 88.64069899745934(u(t))[22])*(u(t))[23], (88.64069899745934(u(t))[24] 
- 88.64069899745934(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -
ifelse((u(t))[24] > 0, (137.8602738401593(u(t))[24] - 137.8602738401593(u(t
))[23])*(u(t))[24], (137.8602738401593(u(t))[25] - 137.8602738401593(u(t))[
24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (21
5.96618521801062(u(t))[25] - 215.96618521801062(u(t))[24])*(u(t))[25], (215
.96618521801062(u(t))[26] - 215.96618521801062(u(t))[25])*(u(t))[25]), Diff
erential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (339.89383203987967(u(t))
[26] - 339.89383203987967(u(t))[25])*(u(t))[26], (339.89383203987967(u(t))[
27] - 339.89383203987967(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]
) ~ -ifelse((u(t))[27] > 0, (536.5139606774583(u(t))[27] - 536.513960677458
3(u(t))[26])*(u(t))[27], (536.5139606774583(u(t))[28] - 536.5139606774583(u
(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0
, (510.5729767825508(u(t))[28] - 510.5729767825508(u(t))[27])*(u(t))[28], (
510.5729767825508(u(t))[29] - 510.5729767825508(u(t))[28])*(u(t))[28]), Dif
ferential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (404.4287934927362(u(t))
[29] - 404.4287934927362(u(t))[28])*(u(t))[29], (1396.026670766099 / (1 + t
) + 667.2862555693342(u(t))[28] - 151.99921171531096(u(t))[27] - 1911.31371
4620122(u(t))[29])*(u(t))[29])]))), [0.001236311578317384, 0.00319489545461
58204, 0.005058779851467854, 0.008000875016886122, 0.012631229528128424, 0.
01988495079346872, 0.0311664502774546, 0.04851690621576643, 0.0747488002408
1432, 0.11340650013800238  …  0.8865934998619975, 0.9252511997591857, 0.951
4830937842336, 0.9688335497225453, 0.9801150492065314, 0.9873687704718717, 
0.9919991249831139, 0.9949412201485321, 0.9968051045453842, 0.9987636884216
826], (0.0, 20.0), SciMLBase.NullParameters(), Base.Pairs{Symbol, Union{}, 
Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem())
 SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, SciML
Base.NullParameters, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, 
ModelingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0x303dd345, 0xf55af8bf, 0x9e5e73f5, 0xb03bfe83, 0x0
6fb6a2b)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋a
rg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x1435c19d, 0x2a6ac7c8, 0x40681e80, 0x79ccff48, 0xe0b66646)}
}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbo
l, Nothing, ModelingToolkit.var"#472#generated_observed#471"{Bool, Modeling
Toolkit.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}, Ba
se.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.Stan
dardODEProblem}(SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, Model
ingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x303dd345, 0xf55af8bf, 0x9e5e73f5, 0xb03bfe83, 0x06fb6a
2b)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x1435c19d, 0x2a6ac7c8, 0x40681e80, 0x79ccff48, 0xe0b66646)}}, Li
nearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, No
thing, ModelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolk
it.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}(Modeling
Toolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x303dd345, 0xf55af8bf, 0x9e5e73f5, 0xb03bfe83, 0x06fb6a2b)
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋
arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0x1435c19d, 0x2a6ac7c8, 0x40681e80, 0x79ccff48, 0xe0b66646)}}(Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x303dd345
, 0xf55af8bf, 0x9e5e73f5, 0xb03bfe83, 0x06fb6a2b)}(quote
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (*)(-1, (/)(-1.0, (+)(1, t)))
            var"(u(t))[29]" = (+)((+)((+)((+)((*)(-0.2, (getindex)(ˍ₋arg1, 
23)), (*)(0.2, var"(u(t))[30]")), (*)(-2.0, (getindex)(ˍ₋arg1, 25))), (*)(2
.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 24))
            var"(u(t))[1]" = 0.0
            var"(u(t))[2]" = (+)((+)((+)((+)((*)(0.2, var"(u(t))[1]"), (*)(
-0.2, (getindex)(ˍ₋arg1, 4))), (*)(2.0, (getindex)(ˍ₋arg1, 1))), (*)(-2.0, 
(getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
                (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, 
Val{1}(), Val{(26,)}(), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666
66666667, var"(u(t))[1]"), (*)(3.3833333333333337, var"(u(t))[2]")), (*)(-5
.316666666666667, (getindex)(ˍ₋arg1, 1))), (*)((+)((+)((/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[2]"), var"(u(t))[1]"), 
(getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 1)), (*)(-4, var"(u(t))[2]")), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), var"(u(t)
)[2]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), var"(
u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ
₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))
), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[2]"
), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, var"(u(t))[2]")), var"(u(t))[1]"), 2)))
, 2))), (/)((+)((+)((*)(5.8, var"(u(t))[2]"), (*)(14.5, (getindex)(ˍ₋arg1, 
1))), (*)(-2.9, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[2]"), var"(u(t))[1]"), (g
etindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 1)), (*)(-4, var"(u(t))[2]")), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), var"(u(t))[
2]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), var"(u(
t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋a
rg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2))
, var"(u(t))[2]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), 2)))), (/)((+)((+)((*)
(-2.9, (getindex)(ˍ₋arg1, 1)), (*)(1.45, (getindex)(ˍ₋arg1, 3))), (*)(-7.25
, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, var"(u(t))[2]"), var"(u(t))[1]"), (getindex)(ˍ₋arg
1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, 
var"(u(t))[2]")), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), var"(u(t))[2]"), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), var"(u(t))[2]"), (get
index)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (ge
tindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (
getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg
1, 3)), 2))), 2)))), (/)((+)((+)((*)(-1.45, var"(u(t))[1]"), (*)(2.9, (geti
ndex)(ˍ₋arg1, 1))), (*)(7.25, var"(u(t))[2]")), (*)((+)((+)((/)(0.3, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[2]"), var"(u(t))[1
]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 1)), (*)(-4, var"(u(t))[2]")), var"(u(t))[1]"), 2))), 2)), (/)(0.6,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), var"
(u(t))[2]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), 
var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getind
ex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t)
)[2]"), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, var"(u(t))[2]")), var"(u(t))[1]"),
 2))), 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 1)), (*
)(0.9666666666666667, (getindex)(ˍ₋arg1, 3))), (*)(-3.3833333333333337, (ge
tindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, var"(u(t))[2]"), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, var"(
u(t))[2]")), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), var"(u(t))[2]"), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), var"(u(t))[2]"), (getindex
)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getinde
x)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)
), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getin
dex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)
), 2))), 2)))), (/)((+)((+)((*)(2.9, var"(u(t))[2]"), (*)(-14.5, (getindex)
(ˍ₋arg1, 1))), (*)(-5.8, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[2]"), var"(u(t))
[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 1)), (*)(-4, var"(u(t))[2]")), var"(u(t))[1]"), 2))), 2)), (/)(0.
6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), va
r"(u(t))[2]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1))
, var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (geti
ndex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 2)), var"(u(t))[2]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), 2)))), (getin
dex)(ˍ₋arg1, 1)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-1.45, var"(u(t))
[2]"), (*)(7.25, (getindex)(ˍ₋arg1, 1))), (*)(2.9, (getindex)(ˍ₋arg1, 2))),
 (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 
2))), var"(u(t))[2]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (g
etindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (
getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((
+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), var"
(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (g
etindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), var"(u(t))[2]"), 2)))
, 2))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 1)), (*)(-2.9, (getindex)(ˍ
₋arg1, 3))), (*)(14.5, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), var"(
u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (ge
tindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), var"(u(t))[2]"), 2))),
 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 
2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1,
 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (ge
tindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, var"
(u(t))[2]"), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 1))), (*)(-5.316666
666666667, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), var"(u(t))[2]"), 
(getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋ar
g1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), var"(u(t))[2]"), 2))), 2)), (/)(0.
6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (g
etindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.
3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)),
 (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getin
dex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))
), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(
ˍ₋arg1, 2))), var"(u(t))[2]"), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666
667, (getindex)(ˍ₋arg1, 4)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 3)
)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), v
ar"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4,
 (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), var"(u(t))[2]"), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2)
)), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋a
rg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3)))
, (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (
/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 1)), (*)(-5.8, (getindex)(ˍ₋arg1, 3)
)), (*)(-14.5, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), var"(u(t))[2]
"), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(
ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), var"(u(t))[2]"), 2))), 2)), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3))
, (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/
)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (g
etindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(
ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 4)), (*)
(-2.9, (getindex)(ˍ₋arg1, 2))), (*)(-7.25, (getindex)(ˍ₋arg1, 3))), (*)((+)
((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)
((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), va
r"(u(t))[2]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)
(ˍ₋arg1, 3)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex
)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3))
, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getind
ex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4))
, 2))), 2)))), (getindex)(ˍ₋arg1, 2)), (*)((+)((+)((+)((+)((+)((/)((+)((+)(
(*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 4)), (*)(0.9666666666666667, (g
etindex)(ˍ₋arg1, 5))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 3))), (*)(
(+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2)))
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1
, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3))
, (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (geti
ndex)(ˍ₋arg1, 5)), 2))), 2))), (/)((+)((+)((*)(-0.9666666666666667, (getind
ex)(ˍ₋arg1, 1)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 2))), (*)(-5.31
6666666666667, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getinde
x)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)),
 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 
2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋
arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2)
)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))),
 (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 4)), (*)(5.8, (getindex)(ˍ₋arg1, 
2))), (*)(14.5, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1,
 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getind
ex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getinde
x)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)),
 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2)))
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ
₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2
)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(
ˍ₋arg1, 1)), (*)(2.9, (getindex)(ˍ₋arg1, 3))), (*)(7.25, (getindex)(ˍ₋arg1,
 2))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1
, 4)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1
, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getin
dex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(
ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1,
 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)
(ˍ₋arg1, 5)), (*)(-2.9, (getindex)(ˍ₋arg1, 3))), (*)(-7.25, (getindex)(ˍ₋ar
g1, 4))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋
arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (g
etindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋a
rg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (ge
tindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((
+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getinde
x)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1,
 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg
1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getinde
x)(ˍ₋arg1, 2)), (*)(-5.8, (getindex)(ˍ₋arg1, 4))), (*)(-14.5, (getindex)(ˍ₋
arg1, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(
ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), 
(getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ
₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (
getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getin
dex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg
1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2
))), 2)))), (getindex)(ˍ₋arg1, 3)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 2)), (*)(3.3833333333333337, (geti
ndex)(ˍ₋arg1, 3))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 4))), (*)((+
)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1,
 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 
3)), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 
5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), 
(*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getind
ex)(ˍ₋arg1, 4)), 2))), 2))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 3)), (
*)(-14.5, (getindex)(ˍ₋arg1, 4))), (*)(-5.8, (getindex)(ˍ₋arg1, 5))), (*)((
+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2)))
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1
, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1,
 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1,
 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))
), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (g
etindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (/)((
+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 4)), (*)(-7.25, (getindex)(ˍ₋arg1, 5)))
, (*)(1.45, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(
ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2)
)), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))
), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋ar
g1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))),
 (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/
)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.38333333333
33337, (getindex)(ˍ₋arg1, 5))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 
6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (g
etindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1,
 5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1,
 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getind
ex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getind
ex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 
4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)
(ˍ₋arg1, 2)), (*)(2.9, (getindex)(ˍ₋arg1, 4))), (*)(7.25, (getindex)(ˍ₋arg1
, 3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg
1, 5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg
1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (geti
ndex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2)))
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1
, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex
)(ˍ₋arg1, 5)), (*)(5.8, (getindex)(ˍ₋arg1, 3))), (*)(14.5, (getindex)(ˍ₋arg
1, 4))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋ar
g1, 5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋ar
g1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (get
index)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (get
index)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 
6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2)))
, 2)))), (getindex)(ˍ₋arg1, 4)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0
.9666666666666667, (getindex)(ˍ₋arg1, 3)), (*)(3.3833333333333337, (getinde
x)(ˍ₋arg1, 4))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 5))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))
, (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5))
, (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (ge
tindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1,
 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (
^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), 
(getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)
((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)
(ˍ₋arg1, 3)), 2))), 2))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋
arg1, 7)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 5))), (*)(-3.383333333
3333337, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋a
rg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3
)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(
ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 
2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1,
 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (g
etindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((
+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 3)), (*)(7.25, (getindex)(ˍ₋arg1, 4)))
, (*)(2.9, (getindex)(ˍ₋arg1, 5))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ
₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1,
 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2)))
, 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg
1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getin
dex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)
), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)
((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 4)), (*)(-14.5, (getindex)(ˍ₋arg1, 5))
), (*)(-5.8, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)
(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(
ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2)
)), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋ar
g1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)),
 (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg
1, 4)), (*)(14.5, (getindex)(ˍ₋arg1, 5))), (*)(-2.9, (getindex)(ˍ₋arg1, 6))
), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)
), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))
), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(
ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)
(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))
), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 7)), (*)(-2.9, (getindex)(ˍ₋arg
1, 5))), (*)(-7.25, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋a
rg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (ge
tindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (get
index)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 
7)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 
2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getinde
x)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg
1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2
)))), (getindex)(ˍ₋arg1, 5)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96
66666666666667, (getindex)(ˍ₋arg1, 4)), (*)(3.3833333333333337, (getindex)(
ˍ₋arg1, 5))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)(
(/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), 
(getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), 
(getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)(
0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), 
(getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3
, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋
arg1, 6)), 2))), 2))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 4)), (*)(7
.25, (getindex)(ˍ₋arg1, 5))), (*)(2.9, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)
((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))),
 (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), 
(getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))),
 (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(
3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ
₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋
arg1, 7)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 8))), (*)(5.316666666
666667, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6
)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 
2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2
))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(
ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 
4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex
)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (
*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+
)((+)((*)(1.45, (getindex)(ˍ₋arg1, 8)), (*)(-2.9, (getindex)(ˍ₋arg1, 6))), 
(*)(-7.25, (getindex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1
, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))
), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getinde
x)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg
1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg
1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getin
dex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6))
, (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)
((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 5)), (*)(-5.8, (getindex)(ˍ₋arg1, 7)))
, (*)(-14.5, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2
))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getin
dex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋a
rg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋a
rg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)),
 (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋ar
g1, 7)), (*)(5.8, (getindex)(ˍ₋arg1, 5))), (*)(14.5, (getindex)(ˍ₋arg1, 6))
), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)
(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)
(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)
(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))
), (getindex)(ˍ₋arg1, 6)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.316666
666666667, (getindex)(ˍ₋arg1, 7)), (*)(0.9666666666666667, (getindex)(ˍ₋arg
1, 9))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(
0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)
), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (get
index)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)
(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*
)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (get
index)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getind
ex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1
, 9)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 7)), (*)(1.45, 
(getindex)(ˍ₋arg1, 9))), (*)(-7.25, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (g
etindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (g
etindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.
6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (g
etindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (geti
ndex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋ar
g1, 9)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg
1, 5)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 6))), (*)(-5.31666666666
6667, (getindex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7))
, (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2)
), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)
), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)
), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (geti
ndex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)(
(+)((*)(2.9, (getindex)(ˍ₋arg1, 6)), (*)(-14.5, (getindex)(ˍ₋arg1, 7))), (*
)(-5.8, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7
)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 
2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 
5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 
6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (get
index)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 
5)), (*)(2.9, (getindex)(ˍ₋arg1, 7))), (*)(7.25, (getindex)(ˍ₋arg1, 6))), (
*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 
7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))),
 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (g
etindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1,
 8)), (*)(5.8, (getindex)(ˍ₋arg1, 6))), (*)(14.5, (getindex)(ˍ₋arg1, 7))), 
(*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ
₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1,
 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2)))
, 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2)))
, 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), 
(getindex)(ˍ₋arg1, 7)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-1.45, (get
index)(ˍ₋arg1, 6)), (*)(7.25, (getindex)(ˍ₋arg1, 7))), (*)(2.9, (getindex)(
ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋ar
g1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3,
 (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((
+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (get
index)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋
arg1, 10)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(
-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ
₋arg1, 9)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)
(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)((+)((+)((*)(5.8, (ge
tindex)(ˍ₋arg1, 7)), (*)(-2.9, (getindex)(ˍ₋arg1, 9))), (*)(14.5, (getindex
)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋
arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(
3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)
((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (g
etindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(
ˍ₋arg1, 10)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)
(ˍ₋arg1, 9)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 
9)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 6
)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 7))), (*)(-5.316666666666667
, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (g
etindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1
, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (
/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)
), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (
/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), 
(getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋
arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(
3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+
)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 10)), (*)(-3.3833333333333337,
 (getindex)(ˍ₋arg1, 9))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 8))), (
*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 
(*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋a
rg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 
8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))
), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))
), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))),
 (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋ar
g1, 7)), (*)(-5.8, (getindex)(ˍ₋arg1, 9))), (*)(-14.5, (getindex)(ˍ₋arg1, 8
))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 
2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getinde
x)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 
7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋
arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 
2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 10)), (*)(-2.9, (getindex)(
ˍ₋arg1, 8))), (*)(-7.25, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (ge
tindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*
)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋
arg1, 6)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋a
rg1, 9)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 
10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (g
etindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋a
rg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10))
, 2))), 2)))), (getindex)(ˍ₋arg1, 8)), (*)((+)((+)((+)((+)((+)((/)((+)((+)(
(*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 7)), (*)(3.3833333333333337, (g
etindex)(ˍ₋arg1, 8))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg
1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋ar
g1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋a
rg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8)))
, (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋ar
g1, 9)), (*)(-7.25, (getindex)(ˍ₋arg1, 10))), (*)(1.45, (getindex)(ˍ₋arg1, 
11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9))
, 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getin
dex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg
1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (geti
ndex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (get
index)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg
1, 11)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex
)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+)((*)(-2.9, 
(getindex)(ˍ₋arg1, 10)), (*)(5.8, (getindex)(ˍ₋arg1, 8))), (*)(14.5, (getin
dex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (get
index)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (g
etindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (ge
tindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(
-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(
ˍ₋arg1, 10)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(
ˍ₋arg1, 10)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)(0.9666666
666666667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)
(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)
(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)
), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)
(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1,
 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))),
 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 7)), (*)(2.9, (getindex)(
ˍ₋arg1, 9))), (*)(7.25, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.6, (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex
)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9))
, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4
, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)
(ˍ₋arg1, 11)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋a
rg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4
, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(
ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)
), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 8)), (*)(-5.8, (get
index)(ˍ₋arg1, 10))), (*)(-14.5, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0
.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (geti
ndex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (geti
ndex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (g
etindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9
)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (getindex
)(ˍ₋arg1, 9)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.316666666666667, (
getindex)(ˍ₋arg1, 10)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 12))), (
*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getinde
x)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10
)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.3, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (
getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex
)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ
₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*
)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)
(ˍ₋arg1, 12)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 10)), (
*)(1.45, (getindex)(ˍ₋arg1, 12))), (*)(-7.25, (getindex)(ˍ₋arg1, 11))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 
2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ
₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋ar
g1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋a
rg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2)))), (/)((+)((+)((*)(5.8, (get
index)(ˍ₋arg1, 9)), (*)(14.5, (getindex)(ˍ₋arg1, 10))), (*)(-2.9, (getindex
)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (geti
ndex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)
(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), 
(*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.
1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
1)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (
getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getind
ex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 8)
), (*)(2.9, (getindex)(ˍ₋arg1, 10))), (*)(7.25, (getindex)(ˍ₋arg1, 9))), (*
)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)),
 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2)))
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(
ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋a
rg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 1
2)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋ar
g1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(-0.966666666
6666667, (getindex)(ˍ₋arg1, 8)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1,
 9))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 10))), (*)((+)((+)((/)(0.
6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (
getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(
0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (g
etindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (geti
ndex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
0)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9))
, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getin
dex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 9)),
 (*)(-14.5, (getindex)(ˍ₋arg1, 10))), (*)(-5.8, (getindex)(ˍ₋arg1, 11))), (
*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)
(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋
arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 
12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 
2))), 2)))), (getindex)(ˍ₋arg1, 10)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((
*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 9)), (*)(3.3833333333333337, (ge
tindex)(ˍ₋arg1, 10))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*
)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))),
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ
₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋ar
g1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13
)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg
1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))
), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)
(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)((+)((+)((*)(2.9, (g
etindex)(ˍ₋arg1, 10)), (*)(-5.8, (getindex)(ˍ₋arg1, 12))), (*)(-14.5, (geti
ndex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getind
ex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10
)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12)))
, (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1,
 10)), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)
), (getindex)(ˍ₋arg1, 12)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋
arg1, 10)), (*)(-2.9, (getindex)(ˍ₋arg1, 12))), (*)(14.5, (getindex)(ˍ₋arg1
, 11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1,
 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, 
(getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (g
etindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)(
(*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex
)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (geti
ndex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-
1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex
)(ˍ₋arg1, 12)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 13)),
 (*)(-2.9, (getindex)(ˍ₋arg1, 11))), (*)(-7.25, (getindex)(ˍ₋arg1, 12))), (
*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2)))
, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(
ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋a
rg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 1
3)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋ar
g1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getinde
x)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(0.9
666666666666667, (getindex)(ˍ₋arg1, 13)), (*)(-3.3833333333333337, (getinde
x)(ˍ₋arg1, 12))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)((+)(
(+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1
, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 
9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2)
)), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋ar
g1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (ge
tindex)(ˍ₋arg1, 9)), (*)(7.25, (getindex)(ˍ₋arg1, 10))), (*)(2.9, (getindex
)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)
(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), 
(*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)(
(+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (
getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)
), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex
)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10))
, (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)))), (ge
tindex)(ˍ₋arg1, 11)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666
666667, (getindex)(ˍ₋arg1, 10)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1,
 11))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0
.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), 
(getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11)
)), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1,
 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2)))
, 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11)
)), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)((+)((+)((*)(-1.45, (getindex)(
ˍ₋arg1, 10)), (*)(2.9, (getindex)(ˍ₋arg1, 12))), (*)(7.25, (getindex)(ˍ₋arg
1, 11))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1
, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4,
 (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getind
ex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.1
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)),
 (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (g
etindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋
arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)
(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (/)((+
)((+)((*)(2.9, (getindex)(ˍ₋arg1, 11)), (*)(-5.8, (getindex)(ˍ₋arg1, 13))),
 (*)(-14.5, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 1
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getind
ex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)
(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg
1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ
₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)),
 (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg
1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (ge
tindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)
(1.45, (getindex)(ˍ₋arg1, 14)), (*)(-2.9, (getindex)(ˍ₋arg1, 12))), (*)(-7.
25, (getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋ar
g1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1,
 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 1
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getind
ex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋
arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)),
 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 13)), (*)(5.8, (geti
ndex)(ˍ₋arg1, 11))), (*)(14.5, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.
3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
1)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (
getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)
), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 
13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)
), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))
)), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 14)), (*)(-3.383
3333333333337, (getindex)(ˍ₋arg1, 13))), (*)(5.316666666666667, (getindex)(
ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ
₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*
)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (g
etindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/
)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)
), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (g
etindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (
getindex)(ˍ₋arg1, 12)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-2.9, (geti
ndex)(ˍ₋arg1, 13)), (*)(-7.25, (getindex)(ˍ₋arg1, 14))), (*)(1.45, (getinde
x)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (g
etindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))),
 (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))),
 (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 
13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))),
 (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))),
 (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 11)), (*)(3.383333
3333333337, (getindex)(ˍ₋arg1, 12))), (*)(-5.316666666666667, (getindex)(ˍ₋
arg1, 13))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getind
ex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (get
index)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(
0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13
)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)),
 (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (get
index)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)
((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 11)), (*)(2.9, (getindex)(ˍ₋arg1, 13
))), (*)(7.25, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getin
dex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1
, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋
arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex
)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14
)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (g
etindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋
arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 12)), (*)(
-5.8, (getindex)(ˍ₋arg1, 14))), (*)(-14.5, (getindex)(ˍ₋arg1, 13))), (*)((+
)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2
))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)
(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getind
ex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1,
 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)
), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 14)
), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 13))), (*)(0.9666666666666667,
 (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 1
2))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 
2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2)
)), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)
(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg
1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2)
)), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 14)), (*)(5.8, (getinde
x)(ˍ₋arg1, 12))), (*)(14.5, (getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.3, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (
*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (get
index)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), 
(getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14)
)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), 
(getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))),
 (getindex)(ˍ₋arg1, 13)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-2.9, (ge
tindex)(ˍ₋arg1, 14)), (*)(1.45, (getindex)(ˍ₋arg1, 16))), (*)(-7.25, (getin
dex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (
getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)
), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1
, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))
), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))
), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 14)), (*)(0.966666
6666666667, (getindex)(ˍ₋arg1, 16))), (*)(-3.3833333333333337, (getindex)(ˍ
₋arg1, 15))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getind
ex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (ge
tindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)
(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
4)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14))
, (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (ge
tindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))), (/
)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 12)), (*)(7.25, (getindex)(ˍ₋arg1, 
13))), (*)(2.9, (getindex)(ˍ₋arg1, 14))), (*)((+)((+)((/)(0.3, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (geti
ndex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg
1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 15)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getinde
x)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
5)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (
getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ
₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 13)), (*)
(14.5, (getindex)(ˍ₋arg1, 14))), (*)(-2.9, (getindex)(ˍ₋arg1, 15))), (*)((+
)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋a
rg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6,
 (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)
(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getind
ex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1,
 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)
), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 12)
), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 13))), (*)(-5.316666666666667
, (getindex)(ˍ₋arg1, 14))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 
13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))),
 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2
))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex
)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋ar
g1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2
))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 13)), (*)(-14.5, (getin
dex)(ˍ₋arg1, 14))), (*)(-5.8, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)),
 (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (g
etindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13))
, (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 1
5))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2)))
), (getindex)(ˍ₋arg1, 14)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.8, (g
etindex)(ˍ₋arg1, 14)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))), (*)(14.5, (getin
dex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getind
ex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)
), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)
), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1,
 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14
)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)(1.45, (getindex)(ˍ
₋arg1, 17)), (*)(-2.9, (getindex)(ˍ₋arg1, 15))), (*)(-7.25, (getindex)(ˍ₋ar
g1, 16))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg
1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3
, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getin
dex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.
3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
6)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (
getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ
₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*
)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (/)((
+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 13)), (*)(3.383333333333
3337, (getindex)(ˍ₋arg1, 14))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 
15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 1
5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (g
etindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)
(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)
), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (
^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)),
 (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (geti
ndex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg
1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3
, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((
+)((*)(2.9, (getindex)(ˍ₋arg1, 14)), (*)(-5.8, (getindex)(ˍ₋arg1, 16))), (*
)(-14.5, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1
, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getin
dex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13))
, 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getind
ex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 
16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17
)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (ge
tindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 
14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getin
dex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))), (/)((+)((+)((*)(0.
9666666666666667, (getindex)(ˍ₋arg1, 17)), (*)(-3.3833333333333337, (getind
ex)(ˍ₋arg1, 16))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 15))), (*)((+)
((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg
1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(
ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋
arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (g
etindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 
13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ
₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)(-1.45, 
(getindex)(ˍ₋arg1, 13)), (*)(7.25, (getindex)(ˍ₋arg1, 14))), (*)(2.9, (geti
ndex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getin
dex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15
)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (
/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16
)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)
)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(
1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1
, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (g
etindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg
1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)
))), (getindex)(ˍ₋arg1, 15)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96
66666666666667, (getindex)(ˍ₋arg1, 14)), (*)(3.3833333333333337, (getindex)
(ˍ₋arg1, 15))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 16))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1,
 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)
(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋a
rg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)((+)((+)((*)(0.96666666
66666667, (getindex)(ˍ₋arg1, 18)), (*)(-3.3833333333333337, (getindex)(ˍ₋ar
g1, 17))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 16))), (*)((+)((+)((/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17))
, (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2)),
 (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 1
5))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg
1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2)
)), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 
16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex
)(ˍ₋arg1, 17)), (*)(5.8, (getindex)(ˍ₋arg1, 15))), (*)(14.5, (getindex)(ˍ₋a
rg1, 16))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(
-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getinde
x)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(
ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (
*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)
), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), 
(getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (get
index)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1,
 14)), (*)(2.9, (getindex)(ˍ₋arg1, 16))), (*)(7.25, (getindex)(ˍ₋arg1, 15))
), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1
, 17)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 1
6)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (g
etindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4
, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex
)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 1
6)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (g
etindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((
*)(1.45, (getindex)(ˍ₋arg1, 18)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))), (*)(-
7.25, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 1
4)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)
), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1,
 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (geti
ndex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(
ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)
), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 15)), (*)(-5.8, (ge
tindex)(ˍ₋arg1, 17))), (*)(-14.5, (getindex)(ˍ₋arg1, 16))), (*)((+)((+)((/)
(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15)))
, (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 
15)), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg
1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2)
)), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 
2)))), (getindex)(ˍ₋arg1, 16)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.
9666666666666667, (getindex)(ˍ₋arg1, 15)), (*)(3.3833333333333337, (getinde
x)(ˍ₋arg1, 16))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 17))), (*)((+)
((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg
1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(
ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋
arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 
19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ
₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)((+)((+)((*)(-2.9, (g
etindex)(ˍ₋arg1, 18)), (*)(5.8, (getindex)(ˍ₋arg1, 16))), (*)(14.5, (getind
ex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getinde
x)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17))
, (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)
(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18)))
, (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1,
 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)
), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667
, (getindex)(ˍ₋arg1, 19)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 18))
), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), 
(getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getin
dex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex
)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)),
 (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18))
, (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18
)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (g
etindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg
1, 15)), (*)(2.9, (getindex)(ˍ₋arg1, 17))), (*)(7.25, (getindex)(ˍ₋arg1, 16
))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (get
index)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getin
dex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ
₋arg1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getind
ex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1,
 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, 
(getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (/)((+)((+)
((*)(2.9, (getindex)(ˍ₋arg1, 16)), (*)(-5.8, (getindex)(ˍ₋arg1, 18))), (*)(
-14.5, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 
15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 
2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18
)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19))
, 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (geti
ndex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getinde
x)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(1.45
, (getindex)(ˍ₋arg1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 17))), (*)(-7.25, (
getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (g
etindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)
), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋
arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17))
, (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2)))
, 2)))), (getindex)(ˍ₋arg1, 17)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-
0.9666666666666667, (getindex)(ˍ₋arg1, 16)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 17))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 18))), (*)((
+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 
2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex
)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(
ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1
, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)
(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)(-2.9, 
(getindex)(ˍ₋arg1, 18)), (*)(-7.25, (getindex)(ˍ₋arg1, 19))), (*)(1.45, (ge
tindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)
), (getindex)(ˍ₋arg1, 19)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 1
9))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 
2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋ar
g1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 1
9))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 
2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 19)), (*)(5.
316666666666667, (getindex)(ˍ₋arg1, 18))), (*)(0.9666666666666667, (getinde
x)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex
)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)),
 (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2)), (/)(
0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 
18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))),
 (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))))
, (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 19)), (*)(5.8, (getindex)(ˍ₋arg1
, 17))), (*)(14.5, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.3, (^)((+)((
+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getind
ex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋
arg1, 16)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-
1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex
)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (geti
ndex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex
)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18
)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)(
(+)((*)(-1.45, (getindex)(ˍ₋arg1, 16)), (*)(2.9, (getindex)(ˍ₋arg1, 18))), 
(*)(7.25, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg
1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)
), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getin
dex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1,
 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋a
rg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (
getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ
₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1,
 16)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 17)), (*)(-5.8,
 (getindex)(ˍ₋arg1, 19))), (*)(-14.5, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)
((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 
2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋ar
g1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1
, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)
)), 2)))), (getindex)(ˍ₋arg1, 18)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 17)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 18))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 19))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋ar
g1, 21)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 19)), (*)(1.45, (getindex)(ˍ₋arg1, 21))), (*)(-7.25, (
getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 1
8)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1,
 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋
arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19))
, (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2)))
, 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 19)), (*)(0.
9666666666666667, (getindex)(ˍ₋arg1, 21))), (*)(-3.3833333333333337, (getin
dex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)
), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)
), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1
, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (ge
tindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2))
)), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 17)), (*)(7.25, (getindex)(ˍ₋
arg1, 18))), (*)(2.9, (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((/)(0.1, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)
(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getin
dex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (g
etindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)
(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getin
dex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 18)
), (*)(14.5, (getindex)(ˍ₋arg1, 19))), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), 
(*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex
)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1
, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (
getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ
₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg
1, 20)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 18)), (*)(-14
.5, (getindex)(ˍ₋arg1, 19))), (*)(-5.8, (getindex)(ˍ₋arg1, 20))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋
arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 
2))), 2)))), (getindex)(ˍ₋arg1, 19)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((
*)(5.8, (getindex)(ˍ₋arg1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 21))), (*)(14
.5, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1
, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)),
 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 2
2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getind
ex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(
ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)((+)((+)((*)(1.45, (g
etindex)(ˍ₋arg1, 22)), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), (*)(-7.25, (geti
ndex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), 
(getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (
/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21
)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2)
)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2)))
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg
1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21)
)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)
))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 18)), (*)(7.25, (getindex)(ˍ
₋arg1, 19))), (*)(2.9, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3
, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex
)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (geti
ndex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (
getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (
*)(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (geti
ndex)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (geti
ndex)(ˍ₋arg1, 18)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 19))), (*)(-
5.316666666666667, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1, (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (g
etindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋
arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-
1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex
)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (geti
ndex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3
, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex
)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 19)), 
(*)(-5.8, (getindex)(ˍ₋arg1, 21))), (*)(-14.5, (getindex)(ˍ₋arg1, 20))), (*
)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getin
dex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)
(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 
19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getin
dex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (ge
tindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋a
rg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getin
dex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1,
 21)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1,
 21)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 22))), (*)(5.316666666666
667, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg
1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)
)), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21))
, 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 
22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getin
dex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6,
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ
₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22))
, 2))), 2)))), (getindex)(ˍ₋arg1, 20)), (*)((+)((+)((+)((+)((+)((/)((+)((+)
((*)(-2.9, (getindex)(ˍ₋arg1, 21)), (*)(-7.25, (getindex)(ˍ₋arg1, 22))), (*
)(1.45, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋a
rg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 1
9)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg
1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (ge
tindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex
)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 2
3)), 2))), 2))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 21))
, (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 22))), (*)(0.9666666666666667
, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1
, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 1
9)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2
))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex
)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋ar
g1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2
))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 19)), (*)(2.9, (getin
dex)(ˍ₋arg1, 21))), (*)(7.25, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (g
etindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20)))
, (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 2
2))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20)))
, (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667
, (getindex)(ˍ₋arg1, 19)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 20)))
, (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22)))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1,
 20)), (*)(-14.5, (getindex)(ˍ₋arg1, 21))), (*)(-5.8, (getindex)(ˍ₋arg1, 22
))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1,
 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, 
(getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(
-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getind
ex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(
ˍ₋arg1, 22)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 22)), (
*)(5.8, (getindex)(ˍ₋arg1, 20))), (*)(14.5, (getindex)(ˍ₋arg1, 21))), (*)((
+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 
2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)
(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getin
dex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1
, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22
)), 2))), 2)))), (getindex)(ˍ₋arg1, 21)), (*)((+)((+)((+)((+)((+)((/)((+)((
+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 20)), (*)(3.3833333333333337
, (getindex)(ˍ₋arg1, 21))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 22))
), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1
, 23)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 2
4)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (g
etindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((
+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (ge
tindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)(
(*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex
)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 2
2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (g
etindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)((+)((+)((*
)(0.9666666666666667, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (geti
ndex)(ˍ₋arg1, 22))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 23))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ
₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋a
rg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (ge
tindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 2
0)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋ar
g1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getinde
x)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)))), (/)((+)((+)((*)(-1.
45, (getindex)(ˍ₋arg1, 20)), (*)(7.25, (getindex)(ˍ₋arg1, 21))), (*)(2.9, (
getindex)(ˍ₋arg1, 22))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (g
etindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1,
 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ
₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20))
, (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ
₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2)))
, 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 21)), (*)(14.5, (getindex)
(ˍ₋arg1, 22))), (*)(-2.9, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), 
(getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getin
dex)(ˍ₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex
)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21))
, (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23))
, (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (g
etindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (
/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getindex)(ˍ₋arg1, 
22))), (*)(-7.25, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋a
rg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (
getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (get
index)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)
(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ
₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (
*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (get
index)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)
(ˍ₋arg1, 24)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 21)), (
*)(-14.5, (getindex)(ˍ₋arg1, 22))), (*)(-5.8, (getindex)(ˍ₋arg1, 23))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23))
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getinde
x)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex
)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋ar
g1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getind
ex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 
23)), 2))), 2)))), (getindex)(ˍ₋arg1, 22)), (*)((+)((+)((+)((+)((+)((/)((+)
((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 24)), (*)(5.31666666666666
7, (getindex)(ˍ₋arg1, 23))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 25)
)), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, 
(getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1
, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (get
index)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((
+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getind
ex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋
arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(
-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getinde
x)(ˍ₋arg1, 24)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 
25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (
getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)((+)((+)((
*)(-1.45, (getindex)(ˍ₋arg1, 21)), (*)(7.25, (getindex)(ˍ₋arg1, 22))), (*)(
2.9, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg
1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2)
)), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ
₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 
22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getin
dex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (^)((+)((+)(1.0e-6,
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ
₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23))
, 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 23)), (*)(-7.25, (g
etindex)(ˍ₋arg1, 24))), (*)(1.45, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)
(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 
22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21))
, (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 
22)), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23
)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2)
)), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 2
4))), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(-0.966666666666
6667, (getindex)(ˍ₋arg1, 21)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 2
2))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22))
, (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (g
etindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22))
, (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), 
(getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 
22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21))
, (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋a
rg1, 22)), (*)(-5.8, (getindex)(ˍ₋arg1, 24))), (*)(-14.5, (getindex)(ˍ₋arg1
, 23))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ
₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)),
 (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getinde
x)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
3)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3,
 (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)
), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (ge
tindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 24)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 24)
), (*)(5.8, (getindex)(ˍ₋arg1, 22))), (*)(14.5, (getindex)(ˍ₋arg1, 23))), (
*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (geti
ndex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex
)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ
₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1,
 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋
arg1, 24)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1
, 24)), 2))), 2)))), (getindex)(ˍ₋arg1, 23)), (*)((+)((+)((+)((+)((+)((/)((
+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 22)), (*)(3.383333333333
3337, (getindex)(ˍ₋arg1, 23))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 
24))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 2
4)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (g
etindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)
(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (geti
ndex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg
1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4
, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (/)((+)((+
)((*)(-2.9, (getindex)(ˍ₋arg1, 24)), (*)(1.45, (getindex)(ˍ₋arg1, 26))), (*
)(-7.25, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1
, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22))
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getinde
x)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋ar
g1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (g
etindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋
arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 
26)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 23)), (*)(14.5, 
(getindex)(ˍ₋arg1, 24))), (*)(-2.9, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((
/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23)
)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)),
 (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))),
 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 
2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2)))
, 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 22)), (*)(2.9, (getindex
)(ˍ₋arg1, 24))), (*)(7.25, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3, (
^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)),
 (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (geti
ndex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getinde
x)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24))
, (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)
), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))
), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
3)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (
getindex)(ˍ₋arg1, 22)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1
, 23)), (*)(-14.5, (getindex)(ˍ₋arg1, 24))), (*)(-5.8, (getindex)(ˍ₋arg1, 2
5))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24
)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (ge
tindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (geti
ndex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(
ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getin
dex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)
(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ
₋arg1, 24)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 26))), (*)(-3.38333
33333333337, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 
22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (get
index)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(
ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex
)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋ar
g1, 26)), 2))), 2)))), (getindex)(ˍ₋arg1, 24)), (*)((+)((+)((+)((+)((+)((/)
((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 23)), (*)(7.25, (getindex)(ˍ₋arg1, 2
4))), (*)(2.9, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getin
dex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1
, 25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋
arg1, 26)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (get
index)(ˍ₋arg1, 26))), var"(u(t))[29]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg
1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2)
)), 2))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getindex
)(ˍ₋arg1, 26))), (*)(14.5, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (
*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (geti
ndex)(ˍ₋arg1, 25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (
getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var
"(u(t))[29]"), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), 
(*)(-4, (getindex)(ˍ₋arg1, 26))), var"(u(t))[29]"), 2))), 2))), (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋ar
g1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (g
etindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)((*
)(-0.9666666666666667, (getindex)(ˍ₋arg1, 23)), (*)(3.3833333333333337, (ge
tindex)(ˍ₋arg1, 24))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 25))), (*
)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1,
 26))), var"(u(t))[29]"), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25)
)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)
)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))
), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg
1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 2
3)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(
ˍ₋arg1, 24)), (*)(-5.8, (getindex)(ˍ₋arg1, 26))), (*)(-14.5, (getindex)(ˍ₋a
rg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (get
index)(ˍ₋arg1, 26))), var"(u(t))[29]"), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getinde
x)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 
25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (g
etindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋a
rg1, 26)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getin
dex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1,
 26)), 2))), 2)))), (/)((+)((+)((*)(1.45, var"(u(t))[29]"), (*)(-2.9, (geti
ndex)(ˍ₋arg1, 25))), (*)(-7.25, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), var"(u(
t))[29]"), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(
ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getin
dex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (get
index)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), var"(u(t))[29]"),
 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, var"(u(t))[29]"), (*)(-3.
3833333333333337, (getindex)(ˍ₋arg1, 26))), (*)(5.316666666666667, (getinde
x)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (ge
tindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)), (/)(
0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)),
 (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), v
ar"(u(t))[29]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getinde
x)(ˍ₋arg1, 26))), var"(u(t))[29]"), 2))), 2)))), (getindex)(ˍ₋arg1, 25)), (
*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋ar
g1, 24)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 25))), (*)(-5.31666666
6666667, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6,
 (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1
, 25)), var"(u(t))[29]"), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25)
)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)
)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 26)), (*)(-4, var"(u(t))[29]")), var"(u(t))[30]"), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), var"(u(t))[3
0]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(
ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)((+)((+)((*)(-2.9, va
r"(u(t))[29]"), (*)(5.8, (getindex)(ˍ₋arg1, 25))), (*)(14.5, (getindex)(ˍ₋a
rg1, 26))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex
)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25
)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ
₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)),
 (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2))), (/)(0.1, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var
"(u(t))[29]")), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, var
"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))), (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg
1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (ge
tindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2)))), (/)((+)((+)((*)(-1.45,
 (getindex)(ˍ₋arg1, 24)), (*)(2.9, (getindex)(ˍ₋arg1, 26))), (*)(7.25, (get
index)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))),
 (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), 
(/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (g
etindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2))), (/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (
*)(-4, var"(u(t))[29]")), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2
))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26
)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)),
 (getindex)(ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)((*)(1.45, var"(u(t))[30]
"), (*)(-2.9, (getindex)(ˍ₋arg1, 26))), (*)(-7.25, var"(u(t))[29]")), (*)((
+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29
]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2)), (/)
(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2
6)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")), v
ar"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[29]"), (g
etindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]"
)), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[29]"
), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)))), (/)((+)((+)((*)(
2.9, (getindex)(ˍ₋arg1, 25)), (*)(-5.8, var"(u(t))[29]")), (*)(-14.5, (geti
ndex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u
(t))[29]"), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)
(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)
), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*
)(-4, var"(u(t))[29]")), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (getind
ex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2)))), (/)((+)((+)((
*)(-3.3833333333333337, var"(u(t))[29]"), (*)(0.9666666666666667, var"(u(t)
)[30]")), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(
0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26
)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)),
 (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), va
r"(u(t))[29]"), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")), var"(u(t))[3
0]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋
arg1, 26)), var"(u(t))[30]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")), var"(u(
t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[29]"), (getinde
x)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)))), (getindex)(ˍ₋arg1, 26)))
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x1435c19d, 0x2a6ac7c8, 0x40681e80, 0x79ccff48, 0xe0b66646)}(quot
e
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (*)(-1, (/)(-1.0, (+)(1, t)))
            var"(u(t))[29]" = (+)((+)((+)((+)((*)(-0.2, (getindex)(ˍ₋arg1, 
23)), (*)(0.2, var"(u(t))[30]")), (*)(-2.0, (getindex)(ˍ₋arg1, 25))), (*)(2
.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 24))
            var"(u(t))[1]" = 0.0
            var"(u(t))[2]" = (+)((+)((+)((+)((*)(0.2, var"(u(t))[1]"), (*)(
-0.2, (getindex)(ˍ₋arg1, 4))), (*)(2.0, (getindex)(ˍ₋arg1, 1))), (*)(-2.0, 
(getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/Symbolics/FGTCH/src/build_function.jl:519 =#
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds
 begin
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, var"(u(t))[1]"), (*)(3.3833333333333337, var"(u(t))[2]
")), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 1))), (*)((+)((+)((/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[2]"), var"(u
(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 1)), (*)(-4, var"(u(t))[2]")), var"(u(t))[1]"), 2))), 2)), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2))
, var"(u(t))[2]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (
getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg
1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var
"(u(t))[2]"), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, var"(u(t))[2]")), var"(u(t))
[1]"), 2))), 2))), (/)((+)((+)((*)(5.8, var"(u(t))[2]"), (*)(14.5, (getinde
x)(ˍ₋arg1, 1))), (*)(-2.9, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[2]"), var"(u(t
))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 1)), (*)(-4, var"(u(t))[2]")), var"(u(t))[1]"), 2))), 2)), (/)(
0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), 
var"(u(t))[2]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1, (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (ge
tindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1,
 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 2)), var"(u(t))[2]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), 2)))), (/)(
(+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 1)), (*)(1.45, (getindex)(ˍ₋arg1, 3)))
, (*)(-7.25, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[2]"), var"(u(t))[1]"), (geti
ndex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)
), (*)(-4, var"(u(t))[2]")), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), var"(u(t))[2]"
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), var"(u(t))
[2]"), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1
, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1))
, (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (geti
ndex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(-1.45, var"(u(t))[1]"), (*)
(2.9, (getindex)(ˍ₋arg1, 1))), (*)(7.25, var"(u(t))[2]")), (*)((+)((+)((/)(
0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[2]"), v
ar"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 1)), (*)(-4, var"(u(t))[2]")), var"(u(t))[1]"), 2))), 2)
), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 2)), var"(u(t))[2]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(
-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(
ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2
, var"(u(t))[2]"), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, var"(u(t))[2]")), var"(
u(t))[1]"), 2))), 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋ar
g1, 1)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 3))), (*)(-3.3833333333
333337, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[2]"), var"(u(t))[1]"), (getindex)
(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*
)(-4, var"(u(t))[2]")), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), var"(u(t))[2]"), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), var"(u(t))[2]")
, (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))
), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)
(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)
(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(2.9, var"(u(t))[2]"), (*)(-14.5,
 (getindex)(ˍ₋arg1, 1))), (*)(-5.8, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/
)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[2]"),
 var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 1)), (*)(-4, var"(u(t))[2]")), var"(u(t))[1]"), 2))), 
2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 2)), var"(u(t))[2]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*
)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex
)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (g
etindex)(ˍ₋arg1, 2)), var"(u(t))[2]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), 2)
))), (getindex)(ˍ₋arg1, 1))
                        ˍ₋out[2] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-1.45, var"(u(t))[2]"), (*)(7.25, (getindex)(ˍ₋arg1, 1))), (*)(2.9, (getind
ex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1,
 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (g
etindex)(ˍ₋arg1, 2))), var"(u(t))[2]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex
)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex
)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 
2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((
+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), var"
(u(t))[2]"), 2))), 2))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 1)), (*)(-
2.9, (getindex)(ˍ₋arg1, 3))), (*)(14.5, (getindex)(ˍ₋arg1, 2))), (*)((+)((+
)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+
)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), var"(
u(t))[2]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-
1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋
arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ
₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (
getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)
(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(-0.96666
66666666667, var"(u(t))[2]"), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 1)
)), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.1, (
^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), 
var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), var"(u(t))[2]"), 
2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2
))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋
arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), var"(u(t))[2]"), (getindex)
(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (
*)(3, (getindex)(ˍ₋arg1, 2))), var"(u(t))[2]"), 2))), 2)))), (/)((+)((+)((*
)(0.9666666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.3833333333333337, (get
index)(ˍ₋arg1, 3))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 2))), (*)((+
)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^
)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), v
ar"(u(t))[2]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex
)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getinde
x)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)
), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getin
dex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)
), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 1)), (*)(-5.8, (get
index)(ˍ₋arg1, 3))), (*)(-14.5, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.
1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*
)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), var"(u(t))[2]
"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)
), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex
)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1,
 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)
(ˍ₋arg1, 4)), (*)(-2.9, (getindex)(ˍ₋arg1, 2))), (*)(-7.25, (getindex)(ˍ₋ar
g1, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 1)), var"(u(t))[2]"), (getindex)(ˍ₋arg1, 2)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)
(ˍ₋arg1, 2))), var"(u(t))[2]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2)))
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1
, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1
, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2))
, (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (geti
ndex)(ˍ₋arg1, 4)), 2))), 2)))), (getindex)(ˍ₋arg1, 2))
                        ˍ₋out[3] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-3.3833333333333337, (getindex)(ˍ₋arg1, 4)), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 5))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 3))), (*)((+)(
(+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)
), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (g
etindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)),
 (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex
)(ˍ₋arg1, 5)), 2))), 2))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(
ˍ₋arg1, 1)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 2))), (*)(-5.316666
666666667, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ
₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1
, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), 
(getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)
((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 4)), (*)(5.8, (getindex)(ˍ₋arg1, 2)))
, (*)(14.5, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(
ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ
₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))
), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg
1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), 
(getindex)(ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋ar
g1, 1)), (*)(2.9, (getindex)(ˍ₋arg1, 3))), (*)(7.25, (getindex)(ˍ₋arg1, 2))
), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)
), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)
(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋ar
g1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1))
, (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋a
rg1, 5)), (*)(-2.9, (getindex)(ˍ₋arg1, 3))), (*)(-7.25, (getindex)(ˍ₋arg1, 
4))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1
, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getin
dex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1,
 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getind
ex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ
₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4
))), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ
₋arg1, 2)), (*)(-5.8, (getindex)(ˍ₋arg1, 4))), (*)(-14.5, (getindex)(ˍ₋arg1
, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋ar
g1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (get
index)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg
1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)
(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))),
 2)))), (getindex)(ˍ₋arg1, 3))
                        ˍ₋out[4] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 2)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 3))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 4))), (*)((+)
((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 
2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3
)), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5
))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (
*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getinde
x)(ˍ₋arg1, 4)), 2))), 2))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 3)), (*
)(-14.5, (getindex)(ˍ₋arg1, 4))), (*)(-5.8, (getindex)(ˍ₋arg1, 5))), (*)((+
)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1,
 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 
3)), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 
5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (ge
tindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+
)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 4)), (*)(-7.25, (getindex)(ˍ₋arg1, 5))),
 (*)(1.45, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ
₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg
1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), 
(getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)
((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.383333333333
3337, (getindex)(ˍ₋arg1, 5))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 6
))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 
5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 
2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getinde
x)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getinde
x)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4
)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(
ˍ₋arg1, 2)), (*)(2.9, (getindex)(ˍ₋arg1, 4))), (*)(7.25, (getindex)(ˍ₋arg1,
 3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1
, 5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1
, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getin
dex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getin
dex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1,
 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)
(ˍ₋arg1, 5)), (*)(5.8, (getindex)(ˍ₋arg1, 3))), (*)(14.5, (getindex)(ˍ₋arg1
, 4))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg
1, 5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg
1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (geti
ndex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))),
 2)))), (getindex)(ˍ₋arg1, 4))
                        ˍ₋out[5] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 3)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 4))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 5))), (*)((+)
((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2
)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5
)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (
getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg
1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4))
, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((
+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getinde
x)(ˍ₋arg1, 3)), 2))), 2))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(
ˍ₋arg1, 7)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 5))), (*)(-3.3833333
333333337, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ
₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1,
 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2)))
, 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg
1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), 
(getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)
((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 3)), (*)(7.25, (getindex)(ˍ₋arg1, 4)
)), (*)(2.9, (getindex)(ˍ₋arg1, 5))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)
(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg
1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getind
ex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2)
)), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋a
rg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (get
index)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 
4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (
/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 4)), (*)(-14.5, (getindex)(ˍ₋arg1, 5
))), (*)(-5.8, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getinde
x)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex
)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))),
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋
arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)
), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋a
rg1, 4)), (*)(14.5, (getindex)(ˍ₋arg1, 5))), (*)(-2.9, (getindex)(ˍ₋arg1, 6
))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 
6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2
))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex
)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getinde
x)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)
))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 7)), (*)(-2.9, (getindex)(ˍ₋a
rg1, 5))), (*)(-7.25, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ
₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (g
etindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1
, 7)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5))
, 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getin
dex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋a
rg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))),
 2)))), (getindex)(ˍ₋arg1, 5))
                        ˍ₋out[6] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 4)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 5))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)
((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7
))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6
))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), 
(*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getinde
x)(ˍ₋arg1, 6)), 2))), 2))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 4)), 
(*)(7.25, (getindex)(ˍ₋arg1, 5))), (*)(2.9, (getindex)(ˍ₋arg1, 6))), (*)((+
)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 
7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 
5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 
6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)),
 (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getind
ex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getinde
x)(ˍ₋arg1, 7)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 8))), (*)(5.3166
66666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2)
)), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getin
dex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋a
rg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (get
index)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6
)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (
/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 8)), (*)(-2.9, (getindex)(ˍ₋arg1, 6
))), (*)(-7.25, (getindex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ
₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (ge
tindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(
ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(
ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (
getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2))))
, (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 5)), (*)(-5.8, (getindex)(ˍ₋arg1,
 7))), (*)(-14.5, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)
(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8
)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (
getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex
)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex
)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1,
 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)
(ˍ₋arg1, 7)), (*)(5.8, (getindex)(ˍ₋arg1, 5))), (*)(14.5, (getindex)(ˍ₋arg1
, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (geti
ndex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg
1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (geti
ndex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (geti
ndex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))),
 2)))), (getindex)(ˍ₋arg1, 6))
                        ˍ₋out[7] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
5.316666666666667, (getindex)(ˍ₋arg1, 7)), (*)(0.9666666666666667, (getinde
x)(ˍ₋arg1, 9))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 8))), (*)((+)(
(+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5
)), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (g
etindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), 
(/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8
)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)),
 (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex
)(ˍ₋arg1, 9)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 7)), (*
)(1.45, (getindex)(ˍ₋arg1, 9))), (*)(-7.25, (getindex)(ˍ₋arg1, 8))), (*)((+
)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 
8))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 
6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getind
ex)(ˍ₋arg1, 9)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getinde
x)(ˍ₋arg1, 5)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 6))), (*)(-5.316
666666666667, (getindex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋a
rg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 
2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6,
 (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋
arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))
), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), 
(/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 6)), (*)(-14.5, (getindex)(ˍ₋arg1, 
7))), (*)(-5.8, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ
₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(
ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(
ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6
)), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(
ˍ₋arg1, 5)), (*)(2.9, (getindex)(ˍ₋arg1, 7))), (*)(7.25, (getindex)(ˍ₋arg1,
 6))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg
1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (geti
ndex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(
ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)
), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1,
 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)
(ˍ₋arg1, 8)), (*)(5.8, (getindex)(ˍ₋arg1, 6))), (*)(14.5, (getindex)(ˍ₋arg1
, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋ar
g1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (get
index)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)
(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9
)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))),
 2)))), (getindex)(ˍ₋arg1, 7))
                        ˍ₋out[8] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-1.45, (getindex)(ˍ₋arg1, 6)), (*)(7.25, (getindex)(ˍ₋arg1, 7))), (*)(2.9, 
(getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (get
index)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 
7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)
(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (g
etindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (
getindex)(ˍ₋arg1, 9)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋ar
g1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3,
 (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)((+)((+)((
*)(5.8, (getindex)(ˍ₋arg1, 7)), (*)(-2.9, (getindex)(ˍ₋arg1, 9))), (*)(14.5
, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (g
etindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1
, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), 
(getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)),
 (getindex)(ˍ₋arg1, 9)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getinde
x)(ˍ₋arg1, 9)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex
)(ˍ₋arg1, 6)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 7))), (*)(-5.3166
66666666667, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getin
dex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)
)), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋a
rg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (g
etindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1
, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)))),
 (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 10)), (*)(-3.383333
3333333337, (getindex)(ˍ₋arg1, 9))), (*)(5.316666666666667, (getindex)(ˍ₋ar
g1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 
8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (ge
tindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((+)((
+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getinde
x)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1
, 10)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg
1, 9)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋
arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (/)((+)((+)((*)(2.9, (get
index)(ˍ₋arg1, 7)), (*)(-5.8, (getindex)(ˍ₋arg1, 9))), (*)(-14.5, (getindex
)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋
arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(
3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getinde
x)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)
((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (g
etindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(
ˍ₋arg1, 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 
9)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 10)), (*)(-2.9, 
(getindex)(ˍ₋arg1, 8))), (*)(-7.25, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/
)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)
((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (g
etindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (ge
tindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)),
 (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (ge
tindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ
₋arg1, 10)), 2))), 2)))), (getindex)(ˍ₋arg1, 8))
                        ˍ₋out[9] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 7)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 8))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)((+)
((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8
))), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 
8)), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1,
 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (g
etindex)(ˍ₋arg1, 7)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 
9)), (*)(-7.25, (getindex)(ˍ₋arg1, 10))), (*)(1.45, (getindex)(ˍ₋arg1, 11))
), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)
(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex
)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getinde
x)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 1
1)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋
arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (get
index)(ˍ₋arg1, 10)), (*)(5.8, (getindex)(ˍ₋arg1, 8))), (*)(14.5, (getindex)
(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getind
ex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋ar
g1, 10)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋ar
g1, 10)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)(0.96666666666
66667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋a
rg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋a
rg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2
))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋a
rg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10)
)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))
)), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 7)), (*)(2.9, (getindex)(ˍ₋ar
g1, 9))), (*)(7.25, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.6, (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋
arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (g
etindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (g
etindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋a
rg1, 11)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1,
 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (g
etindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋ar
g1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2
))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 8)), (*)(-5.8, (getinde
x)(ˍ₋arg1, 10))), (*)(-14.5, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)),
 (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex
)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex
)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), 
(getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (getindex)(ˍ₋
arg1, 9))
                        ˍ₋out[10] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(5.316666666666667, (getindex)(ˍ₋arg1, 10)), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 12))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 11))), (*)(
(+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2
))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋
arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg
1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋ar
g1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (/)((+)((+)((*)(-2.9, (geti
ndex)(ˍ₋arg1, 10)), (*)(1.45, (getindex)(ˍ₋arg1, 12))), (*)(-7.25, (getinde
x)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (get
index)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex
)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)),
 (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), 
(getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (
*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2)))), (/)(
(+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 9)), (*)(14.5, (getindex)(ˍ₋arg1, 10)))
, (*)(-2.9, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getinde
x)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋
arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)
), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)),
 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getin
dex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)
(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+)((*)(-1.45, 
(getindex)(ˍ₋arg1, 8)), (*)(2.9, (getindex)(ˍ₋arg1, 10))), (*)(7.25, (getin
dex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (ge
tindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10))
, (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(
0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))),
 (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ
₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*
)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)
((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 8)), (*)(3.383333333333333
7, (getindex)(ˍ₋arg1, 9))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 10))
), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 
11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)),
 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getin
dex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex
)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋ar
g1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)
(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(2.9, (g
etindex)(ˍ₋arg1, 9)), (*)(-14.5, (getindex)(ˍ₋arg1, 10))), (*)(-5.8, (getin
dex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (g
etindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getind
ex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)
), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11)))
, (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (get
index)(ˍ₋arg1, 11)), 2))), 2)))), (getindex)(ˍ₋arg1, 10))
                        ˍ₋out[11] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 9)), (*)(3.3833333333333337, (geti
ndex)(ˍ₋arg1, 10))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)(
(+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋a
rg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1
, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13))
, 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getin
dex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1,
 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))),
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ
₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)((+)((+)((*)(2.9, (get
index)(ˍ₋arg1, 10)), (*)(-5.8, (getindex)(ˍ₋arg1, 12))), (*)(-14.5, (getind
ex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex
)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10))
, (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), 
(getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 1
0)), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)),
 (getindex)(ˍ₋arg1, 12)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋ar
g1, 10)), (*)(-2.9, (getindex)(ˍ₋arg1, 12))), (*)(14.5, (getindex)(ˍ₋arg1, 
11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 1
3)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (g
etindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (get
index)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*
)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(
ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 12)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 13)), (
*)(-2.9, (getindex)(ˍ₋arg1, 11))), (*)(-7.25, (getindex)(ˍ₋arg1, 12))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 
(*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋
arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg
1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)
), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1
, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)
(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(0.966
6666666666667, (getindex)(ˍ₋arg1, 13)), (*)(-3.3833333333333337, (getindex)
(ˍ₋arg1, 12))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+
)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 
12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)
), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(
ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2)))
, 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1
, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (geti
ndex)(ˍ₋arg1, 9)), (*)(7.25, (getindex)(ˍ₋arg1, 10))), (*)(2.9, (getindex)(
ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ
₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*
)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10
)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+
)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (ge
tindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)),
 (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(
ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), 
(*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)))), (geti
ndex)(ˍ₋arg1, 11))
                        ˍ₋out[12] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 10)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 11))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 12))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getinde
x)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (get
index)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋ar
g1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getinde
x)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)((+)((+)((*)(-1.4
5, (getindex)(ˍ₋arg1, 10)), (*)(2.9, (getindex)(ˍ₋arg1, 12))), (*)(7.25, (g
etindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (ge
tindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋
arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)),
 (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))),
 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 11)), (*)(-5.8, (getindex)(
ˍ₋arg1, 13))), (*)(-14.5, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11
)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (g
etindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13)))
, (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (g
etindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (
/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 14)), (*)(-2.9, (getindex)(ˍ₋arg1, 
12))), (*)(-7.25, (getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋a
rg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)
(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getin
dex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4,
 (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)
(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 13)), 
(*)(5.8, (getindex)(ˍ₋arg1, 11))), (*)(14.5, (getindex)(ˍ₋arg1, 12))), (*)(
(+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋
arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getinde
x)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (geti
ndex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg
1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 1
3)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 14
)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 13))), (*)(5.31666666666666
7, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10))
, (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getinde
x)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋a
rg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 
2))), 2)))), (getindex)(ˍ₋arg1, 12))
                        ˍ₋out[13] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-2.9, (getindex)(ˍ₋arg1, 13)), (*)(-7.25, (getindex)(ˍ₋arg1, 14))), (*)(1.
45, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋ar
g1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋
arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 1
5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getind
ex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋
arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)),
 2))), 2))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 11)), 
(*)(3.3833333333333337, (getindex)(ˍ₋arg1, 12))), (*)(-5.316666666666667, (
getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 1
2)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1,
 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ
₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1,
 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2)))
, 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 11)), (*)(2.9, (getindex
)(ˍ₋arg1, 13))), (*)(7.25, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*
)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (geti
ndex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (
getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))
), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))
), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13))
, (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (
getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1
, 12)), (*)(-5.8, (getindex)(ˍ₋arg1, 14))), (*)(-14.5, (getindex)(ˍ₋arg1, 1
3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋a
rg1, 14)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(
ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12))
, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.3, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)
(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getin
dex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)
(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)
(ˍ₋arg1, 14)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 13))), (*)(0.96666
66666666667, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getinde
x)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 
13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋ar
g1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(
ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14))
, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (get
index)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋ar
g1, 15)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 14)), (*)(5
.8, (getindex)(ˍ₋arg1, 12))), (*)(14.5, (getindex)(ˍ₋arg1, 13))), (*)((+)((
+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1
, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋
arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)
(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 
2))), 2)))), (getindex)(ˍ₋arg1, 13))
                        ˍ₋out[14] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-2.9, (getindex)(ˍ₋arg1, 14)), (*)(1.45, (getindex)(ˍ₋arg1, 16))), (*)(-7.
25, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1
, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 1
6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getind
ex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋
arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)),
 2))), 2))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 14)), (*
)(0.9666666666666667, (getindex)(ˍ₋arg1, 16))), (*)(-3.3833333333333337, (g
etindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))
), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 
15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))),
 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 12)), (*)(7.25, (getindex
)(ˍ₋arg1, 13))), (*)(2.9, (getindex)(ˍ₋arg1, 14))), (*)((+)((+)((/)(0.3, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)
(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getin
dex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (g
etindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15)))
, (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)),
 (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (g
etindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1,
 13)), (*)(14.5, (getindex)(ˍ₋arg1, 14))), (*)(-2.9, (getindex)(ˍ₋arg1, 15)
)), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1
, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (get
index)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-
4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getinde
x)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 15)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ
₋arg1, 12)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 13))), (*)(-5.31666
6666666667, (getindex)(ˍ₋arg1, 14))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex
)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 1
4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg
1, 15)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ
₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)),
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (geti
ndex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg
1, 14)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 13)), (*)(-14
.5, (getindex)(ˍ₋arg1, 14))), (*)(-5.8, (getindex)(ˍ₋arg1, 15))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1
, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋
arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)
(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 
2))), 2)))), (getindex)(ˍ₋arg1, 14))
                        ˍ₋out[15] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(5.8, (getindex)(ˍ₋arg1, 14)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))), (*)(14.5
, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)),
 (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))),
 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2
))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))
), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)
(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)(1.45, (get
index)(ˍ₋arg1, 17)), (*)(-2.9, (getindex)(ˍ₋arg1, 15))), (*)(-7.25, (getind
ex)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getinde
x)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)
), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16))
, (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))
, (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 
16))), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (get
index)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)))
), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 13)), (*)(3.3833
333333333337, (getindex)(ˍ₋arg1, 14))), (*)(-5.316666666666667, (getindex)(
ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (
*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (g
etindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))
), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getinde
x)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)
), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (
/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 14)), (*)(-5.8, (getindex)(ˍ₋arg1, 1
6))), (*)(-14.5, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex
)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋ar
g1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(
ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)
(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(
ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))), (/)((+)((+
)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 17)), (*)(-3.3833333333333337,
 (getindex)(ˍ₋arg1, 16))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 15))),
 (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getinde
x)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg
1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (ge
tindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (geti
ndex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*
)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(
ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (get
index)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)
(-1.45, (getindex)(ˍ₋arg1, 13)), (*)(7.25, (getindex)(ˍ₋arg1, 14))), (*)(2.
9, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 
2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex
)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 
13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getinde
x)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 
2))), 2)))), (getindex)(ˍ₋arg1, 15))
                        ˍ₋out[16] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 14)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 15))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 16))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ
₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 1
5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getind
ex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (get
index)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋ar
g1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getinde
x)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)((+)((+)((*)(0.96
66666666666667, (getindex)(ˍ₋arg1, 18)), (*)(-3.3833333333333337, (getindex
)(ˍ₋arg1, 17))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 16))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋a
rg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)
(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋
arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (ge
tindex)(ˍ₋arg1, 17)), (*)(5.8, (getindex)(ˍ₋arg1, 15))), (*)(14.5, (getinde
x)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (g
etindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (geti
ndex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
6)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 
16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ
₋arg1, 14)), (*)(2.9, (getindex)(ˍ₋arg1, 16))), (*)(7.25, (getindex)(ˍ₋arg1
, 15))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(
ˍ₋arg1, 17)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋a
rg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(
-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), 
(*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (ge
tindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋a
rg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(
-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)
((+)((*)(1.45, (getindex)(ˍ₋arg1, 18)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))),
 (*)(-7.25, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋a
rg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 1
4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg
1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ
₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)),
 (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (geti
ndex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg
1, 18)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 15)), (*)(-5.
8, (getindex)(ˍ₋arg1, 17))), (*)(-14.5, (getindex)(ˍ₋arg1, 16))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1,
 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)
(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 
2))), 2)))), (getindex)(ˍ₋arg1, 16))
                        ˍ₋out[17] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 15)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 16))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 17))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ
₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 1
6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getind
ex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex
)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋ar
g1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getinde
x)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 18)), (*)(5.8, (getindex)(ˍ₋arg1, 16))), (*)(14.5, (ge
tindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (get
index)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 1
8))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1,
 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(0.966666666666
6667, (getindex)(ˍ₋arg1, 19)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 
18))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16
)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (g
etindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (geti
ndex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
7)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18)))
, (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ
₋arg1, 15)), (*)(2.9, (getindex)(ˍ₋arg1, 17))), (*)(7.25, (getindex)(ˍ₋arg1
, 16))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1,
 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, 
(getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (g
etindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getinde
x)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (ge
tindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋a
rg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(
-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (/)((+)
((+)((*)(2.9, (getindex)(ˍ₋arg1, 16)), (*)(-5.8, (getindex)(ˍ₋arg1, 18))), 
(*)(-14.5, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋ar
g1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15
)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1
, 18)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 
19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (
getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1
, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (get
index)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(
1.45, (getindex)(ˍ₋arg1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 17))), (*)(-7.2
5, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 
2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex
)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 
17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 
2))), 2)))), (getindex)(ˍ₋arg1, 17))
                        ˍ₋out[18] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 16)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 17))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 18))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19))
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 2
0)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex
)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋ar
g1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getinde
x)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 18)), (*)(-7.25, (getindex)(ˍ₋arg1, 19))), (*)(1.45, (
getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 1
7)), (getindex)(ˍ₋arg1, 19)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1,
 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋
arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1,
 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 19)), (*)(
5.316666666666667, (getindex)(ˍ₋arg1, 18))), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getind
ex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)
), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2)), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)
), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))
), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1
, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))
), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))
)), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 19)), (*)(5.8, (getindex)(ˍ₋ar
g1, 17))), (*)(14.5, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.3, (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (geti
ndex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(
ˍ₋arg1, 16)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getind
ex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (ge
tindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+
)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 16)), (*)(2.9, (getindex)(ˍ₋arg1, 18)))
, (*)(7.25, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 1
6)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg
1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ
₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)
(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg
1, 16)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 17)), (*)(-5.
8, (getindex)(ˍ₋arg1, 19))), (*)(-14.5, (getindex)(ˍ₋arg1, 18))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋ar
g1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 
2))), 2)))), (getindex)(ˍ₋arg1, 18))
                        ˍ₋out[19] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 17)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 18))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 19))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋ar
g1, 21)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 19)), (*)(1.45, (getindex)(ˍ₋arg1, 21))), (*)(-7.25, (
getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 1
8)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1,
 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋
arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19))
, (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2)))
, 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 19)), (*)(0.
9666666666666667, (getindex)(ˍ₋arg1, 21))), (*)(-3.3833333333333337, (getin
dex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)
), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)
), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1
, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (ge
tindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2))
)), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 17)), (*)(7.25, (getindex)(ˍ₋
arg1, 18))), (*)(2.9, (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((/)(0.1, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)
(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getin
dex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (g
etindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)
(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getin
dex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 18)
), (*)(14.5, (getindex)(ˍ₋arg1, 19))), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), 
(*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex
)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1
, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (
getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ
₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg
1, 20)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 18)), (*)(-14
.5, (getindex)(ˍ₋arg1, 19))), (*)(-5.8, (getindex)(ˍ₋arg1, 20))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋
arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 
2))), 2)))), (getindex)(ˍ₋arg1, 19))
                        ˍ₋out[20] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(5.8, (getindex)(ˍ₋arg1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 21))), (*)(14.5
, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 
20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))),
 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2
))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex
)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋
arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)((+)((+)((*)(1.45, (get
index)(ˍ₋arg1, 22)), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), (*)(-7.25, (getind
ex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21))
, (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2)))
, (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1,
 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21)))
, (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)))
), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 18)), (*)(7.25, (getindex)(ˍ₋a
rg1, 19))), (*)(2.9, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, 
(getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(
ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (ge
tindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)
(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getind
ex)(ˍ₋arg1, 18)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 19))), (*)(-5.
316666666666667, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (get
index)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋ar
g1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(
ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getind
ex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, 
(getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(
ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 19)), (*
)(-5.8, (getindex)(ˍ₋arg1, 21))), (*)(-14.5, (getindex)(ˍ₋arg1, 20))), (*)(
(+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getinde
x)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ
₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getinde
x)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (geti
ndex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg
1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 2
1)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 2
1)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 22))), (*)(5.31666666666666
7, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1,
 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getinde
x)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋a
rg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 
2))), 2)))), (getindex)(ˍ₋arg1, 20))
                        ˍ₋out[21] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-2.9, (getindex)(ˍ₋arg1, 21)), (*)(-7.25, (getindex)(ˍ₋arg1, 22))), (*)(1.
45, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋ar
g1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1,
 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 2
3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋
arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)),
 2))), 2))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 21)), (*
)(-3.3833333333333337, (getindex)(ˍ₋arg1, 22))), (*)(0.9666666666666667, (g
etindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋
arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 
22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))),
 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 19)), (*)(2.9, (getindex)
(ˍ₋arg1, 21))), (*)(7.25, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22)))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (g
etindex)(ˍ₋arg1, 19)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 20))), (*
)(-5.316666666666667, (getindex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)
(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)
), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), 
(getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getin
dex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (g
etindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), 
(getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getin
dex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 20)
), (*)(-14.5, (getindex)(ˍ₋arg1, 21))), (*)(-5.8, (getindex)(ˍ₋arg1, 22))),
 (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getind
ex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 
22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (get
index)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, 
(getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(
ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 22)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 22)), (*)(5
.8, (getindex)(ˍ₋arg1, 20))), (*)(14.5, (getindex)(ˍ₋arg1, 21))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋a
rg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)
(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 
2))), 2)))), (getindex)(ˍ₋arg1, 21))
                        ˍ₋out[22] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 20)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 21))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 22))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23))
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getinde
x)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex
)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋ar
g1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2
))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getinde
x)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)((+)((+)((*)(0.96
66666666666667, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (getindex)(
ˍ₋arg1, 22))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1,
 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 2
0)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2
))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋a
rg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (g
etindex)(ˍ₋arg1, 20)), (*)(7.25, (getindex)(ˍ₋arg1, 21))), (*)(2.9, (getind
ex)(ˍ₋arg1, 22))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getinde
x)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22))
, (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (
^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22)))
, (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1,
 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1,
 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2)))
), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 21)), (*)(14.5, (getindex)(ˍ₋arg
1, 22))), (*)(-2.9, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getin
dex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ
₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(
3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (get
index)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getinde
x)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
2)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+)
((+)((*)(1.45, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getindex)(ˍ₋arg1, 22))),
 (*)(-7.25, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 2
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg
1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1,
 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, 
(getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg
1, 24)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 21)), (*)(-14
.5, (getindex)(ˍ₋arg1, 22))), (*)(-5.8, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋a
rg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋ar
g1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (get
index)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 
2))), 2)))), (getindex)(ˍ₋arg1, 22))
                        ˍ₋out[23] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-3.3833333333333337, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (geti
ndex)(ˍ₋arg1, 23))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 25))), (*)(
(+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getinde
x)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ
₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋ar
g1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25
)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg
1, 24)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex
)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)((+)((+)((*)(-1.45
, (getindex)(ˍ₋arg1, 21)), (*)(7.25, (getindex)(ˍ₋arg1, 22))), (*)(2.9, (ge
tindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23)))
, (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 2
4))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋a
rg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 2
3))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 
2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 23)), (*)(-7.25, (getindex)
(ˍ₋arg1, 24))), (*)(1.45, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*
)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getin
dex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (g
etindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (get
index)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24
)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (g
etindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (g
etindex)(ˍ₋arg1, 21)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 22))), (*
)(-5.316666666666667, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3,
 (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)
(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getinde
x)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23))
, (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*
)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getin
dex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 22)
), (*)(-5.8, (getindex)(ˍ₋arg1, 24))), (*)(-14.5, (getindex)(ˍ₋arg1, 23))),
 (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (ge
tindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 2
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg
1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (ge
tindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (geti
ndex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(
ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋ar
g1, 24)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 24)), (*)(5
.8, (getindex)(ˍ₋arg1, 22))), (*)(14.5, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋
arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1
, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 2
3)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2
))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 
2))), 2)))), (getindex)(ˍ₋arg1, 23))
                        ˍ₋out[24] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 22)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 23))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 24))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ
₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 2
6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋ar
g1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getinde
x)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 24)), (*)(1.45, (getindex)(ˍ₋arg1, 26))), (*)(-7.25, (
getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (g
etindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1,
 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ
₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2)))
, 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 23)), (*)(14.5, (getindex)
(ˍ₋arg1, 24))), (*)(-2.9, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), 
(getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getin
dex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex
)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)),
 (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (g
etindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (
/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 22)), (*)(2.9, (getindex)(ˍ₋arg1, 
24))), (*)(7.25, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex
)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋ar
g1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1,
 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, 
(getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getind
ex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (geti
ndex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(
ˍ₋arg1, 22)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 23)), (*
)(-14.5, (getindex)(ˍ₋arg1, 24))), (*)(-5.8, (getindex)(ˍ₋arg1, 25))), (*)(
(+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋
arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋ar
g1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26
)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg
1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 2
5)), 2))), 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 24)
), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 26))), (*)(-3.383333333333333
7, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22))
, (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2)))
, 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋a
rg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getinde
x)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 
24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 
2))), 2)))), (getindex)(ˍ₋arg1, 24))
                        ˍ₋out[25] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-1.45, (getindex)(ˍ₋arg1, 23)), (*)(7.25, (getindex)(ˍ₋arg1, 24))), (*)(2.
9, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1,
 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg
1, 26))), var"(u(t))[29]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (g
etindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/
)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getindex)(ˍ₋arg1, 26
))), (*)(14.5, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getin
dex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1
, 25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋
arg1, 26)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (get
index)(ˍ₋arg1, 26))), var"(u(t))[29]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666
666666667, (getindex)(ˍ₋arg1, 23)), (*)(3.3833333333333337, (getindex)(ˍ₋ar
g1, 24))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), var"
(u(t))[29]"), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getinde
x)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
4)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (ge
tindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)
(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getind
ex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 24))
, (*)(-5.8, (getindex)(ˍ₋arg1, 26))), (*)(-14.5, (getindex)(ˍ₋arg1, 25))), 
(*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg
1, 26))), var"(u(t))[29]"), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 2
5))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 
2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))),
 2)))), (/)((+)((+)((*)(1.45, var"(u(t))[29]"), (*)(-2.9, (getindex)(ˍ₋arg1
, 25))), (*)(-7.25, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getin
dex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), var"(u(t))[29]"), 2
))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getin
dex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)
(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1,
 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (geti
ndex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg
1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), var"(u(t))[29]"), 2))), 2))))
, (/)((+)((+)((*)(0.9666666666666667, var"(u(t))[29]"), (*)(-3.383333333333
3337, (getindex)(ˍ₋arg1, 26))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 2
5))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋ar
g1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (g
etindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)), (/)(0.6, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(
ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25))
, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), 
(getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), var"(u(t))[29
]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 2
6))), var"(u(t))[29]"), 2))), 2)))), (getindex)(ˍ₋arg1, 25))
                        ˍ₋out[26] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 24)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 25))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 26))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[
29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2)), (
/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24
)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")),
 var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[29]"), 
(getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋
arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)),
 2))), 2))), (/)((+)((+)((*)(-2.9, var"(u(t))[29]"), (*)(5.8, (getindex)(ˍ₋
arg1, 25))), (*)(14.5, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.3, (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4
, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex
)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[2
9]"), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")), var"(u(t))[30]"), 2)))
, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26))
, var"(u(t))[30]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-
1, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]")
, 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 24)), (*)(2.9, (ge
tindex)(ˍ₋arg1, 26))), (*)(7.25, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(
0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26
)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)),
 (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), va
r"(u(t))[29]"), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")), var"(u(t))[3
0]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋
arg1, 26)), var"(u(t))[30]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), 
(getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)))),
 (/)((+)((+)((*)(1.45, var"(u(t))[30]"), (*)(-2.9, (getindex)(ˍ₋arg1, 26)))
, (*)(-7.25, var"(u(t))[29]")), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 2
5)), var"(u(t))[29]"), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))),
 (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))),
 (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 26)), (*)(-4, var"(u(t))[29]")), var"(u(t))[30]"), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")), var"(u(t))[30]"), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), var"(u(t))
[30]"), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 25)), (*)(-5.8
, var"(u(t))[29]")), (*)(-14.5, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0
.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (getind
ex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2)), (/)(0.1, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4,
 (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)
(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")), var"(u(t))[30
]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋a
rg1, 26)), var"(u(t))[30]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(
t))[29]"), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, var"(u(t))[29]
"), (*)(0.9666666666666667, var"(u(t))[30]")), (*)(5.316666666666667, (geti
ndex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), 
(getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (
/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (ge
tindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2))), (/)(0.1, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*
)(-4, var"(u(t))[29]")), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)
), (*)(-4, var"(u(t))[29]")), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))
), 2)))), (getindex)(ˍ₋arg1, 26))
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing,
 nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("ge
tindex(u(t), 3)"), Symbol("getindex(u(t), 4)"), Symbol("getindex(u(t), 5)")
, Symbol("getindex(u(t), 6)"), Symbol("getindex(u(t), 7)"), Symbol("getinde
x(u(t), 8)"), Symbol("getindex(u(t), 9)"), Symbol("getindex(u(t), 10)"), Sy
mbol("getindex(u(t), 11)"), Symbol("getindex(u(t), 12)")  …  Symbol("getind
ex(u(t), 19)"), Symbol("getindex(u(t), 20)"), Symbol("getindex(u(t), 21)"),
 Symbol("getindex(u(t), 22)"), Symbol("getindex(u(t), 23)"), Symbol("getind
ex(u(t), 24)"), Symbol("getindex(u(t), 25)"), Symbol("getindex(u(t), 26)"),
 Symbol("getindex(u(t), 27)"), Symbol("getindex(u(t), 28)")], :t, nothing, 
ModelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolkit.ODES
ystem, Dict{Any, Any}}(false, Core.Box(Symbolics.Equation[(u(t))[30] ~ -(-1
.0 / (1 + t)), (u(t))[1] ~ 0.0, (u(t))[29] ~ 0.2(u(t))[30] + 2.0(u(t))[28] 
+ (u(t))[26] - 0.2(u(t))[25] - 2.0(u(t))[27], (u(t))[2] ~ 0.2(u(t))[1] + 2.
0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[4]]), ModelingToolkit.ODE
System(Symbolics.Equation[Differential(t)((u(t))[3]) ~ ((3.3833333333333337
(u(t))[2] - 0.9666666666666667(u(t))[1] - 5.316666666666667(u(t))[3]) / ((0
.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*
((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1]
 - 4(u(t))[2])^2))^2)) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((
0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)
*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^
2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) 
+ (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3]
)^2))^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1.0e
-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3
] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - 
(u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(
((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3]
 + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[
4])^2))^2)) + (2.9(u(t))[3] + 7.25(u(t))[2] - 1.45(u(t))[1]) / ((0.3 / ((1.
0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))
[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] 
- (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t)
)[2])^2))^2)) + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(t))[5] -
 3.3833333333333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (
u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u
(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(
t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2)
 + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[2] -
 14.5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + 
(u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((
u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(
((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)))*(u(t))[3], Differential(t)((u
(t))[4]) ~ ((7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e
-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4
] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - 
(u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2
] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[
3])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0
e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[
4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] -
 (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3]
 - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) +
 (3.3833333333333337(u(t))[3] - 0.9666666666666667(u(t))[2] - 5.31666666666
6667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(
t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6
] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(
u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (0.9666666666666667(u(t))[6] +
 5.316666666666667(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0e
-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4
] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - 
(u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4]
 + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0
e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[
4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] -
 (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3]
 - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) +
 (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[
2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6
 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] 
+ (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6
] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))
)*(u(t))[4], Differential(t)((u(t))[5]) ~ ((0.9666666666666667(u(t))[7] + 5
.316666666666667(u(t))[5] - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6
 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 
2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u
(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(
u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6]
)^2))^2)) + (3.3833333333333337(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.
316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))
[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))
[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[
6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.
5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))
[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[
5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))
[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 
1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (1
3//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[
7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((
u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] 
- 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u
(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(
t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t)
)[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((
3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6]
 - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(
u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u
(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^
2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~ ((
3.3833333333333337(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.3166666666666
67(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))
[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[
7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] 
- 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 
5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t)
)[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))
[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8]
 - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]
) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t)
)[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7
])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2)) + (5.316666666666667(u(t))[6] + 0.96666666666
66667(u(t))[8] - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(
((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])
^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2)
 + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + 
(u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] 
- 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) +
 (2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^
2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] 
+ (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4
] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))
 + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])
^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6]
 + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7
])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], 
Differential(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.966666666666
6667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) +
 (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u
(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (
0.9666666666666667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.38333333333333
37(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13/
/12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[
5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] 
- 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(
t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 
1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (1
3//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t)
)[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9
] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(
u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] 
- 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (
13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t
))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))
[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(
t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t
))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[
8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u
(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(
t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))
[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1
//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u
(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2
(u(t))[8])^2))^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ ((3.38333333333
33337(u(t))[7] - 0.9666666666666667(u(t))[6] - 5.316666666666667(u(t))[8]) 
/ ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (
1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t
))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9
])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2)) + (7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[
6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2)
 + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(
u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t
))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] 
+ (u(t))[8] - 2(u(t))[7])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.31666
6666666667(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13
//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(
t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))
[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u
(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^
2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-
6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8
] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] 
+ (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t
))[9])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((
1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(
t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(
t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^
2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u
(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t)
)[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t
))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(
t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))
[8], Differential(t)((u(t))[9]) ~ ((5.316666666666667(u(t))[9] + 0.96666666
66666667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t
))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))
[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u
(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] 
+ (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))
[10])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / 
((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3
(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) +
 (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))
[11] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[8] - 0.966666666666
6667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(
((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11
] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] 
- 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))
[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (
u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u
(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((
u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] -
 (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) +
 (2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[
9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t)
)[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u
(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2
))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (
u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)
*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[
8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2
)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((7.25(u(t))[9] + 2.9(u(t))[10
] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] -
 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0
.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//
4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (5.8(u(t))[9]
 + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8
] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t)
)[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])
^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (3.3833333
333333337(u(t))[9] - 0.9666666666666667(u(t))[8] - 5.316666666666667(u(t))[
10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2
) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] -
 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((
3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (0.9666666666666667(u(t))[1
2] + 5.316666666666667(u(t))[10] - 3.3833333333333337(u(t))[11]) / ((0.3 / 
((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(
u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12]
 - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^
2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1
3//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] +
 (u(t))[12] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u
(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[
11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))
[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2
))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9
] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7
.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u
(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (
u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[1
1])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2)
 + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Di
fferential(t)((u(t))[11]) ~ ((3.3833333333333337(u(t))[10] - 0.966666666666
6667(u(t))[9] - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[
9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12
])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((
u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(
t))[10])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)
*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t)
)[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0
e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t
))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11
] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2
) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t)
)[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4
(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//
12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.316666666666667(u
(t))[11] + 0.9666666666666667(u(t))[13] - 3.3833333333333337(u(t))[12]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[
10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2
(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2
(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((
1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((
u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[11] + 7.25(u(t))
[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12]
)^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u
(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] 
- 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9
(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[
9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12
])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((
u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10
] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^
2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ ((5.316666666666667(u(t))[12
] + 0.9666666666666667(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (
u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[
11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))
[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-
6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))
[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] 
- 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2)
 + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))
[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 
4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t)
)[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8
(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[
12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))
[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / 
((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((
3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[
11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2)
)^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-
6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[1
3] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[
12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2
) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13
//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + 
(u(t))[10] - 4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[11] - 0.96666
66666666667(u(t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 
2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] -
 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (
1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t)
)[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[
13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(
((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))
[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t)
)[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))
[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Differential(t)((u
(t))[19]) ~ ((3.3833333333333337(u(t))[18] - 0.9666666666666667(u(t))[17] -
 5.316666666666667(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + 
(u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[
18])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//
12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (
u(t))[21] - 4(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[
19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2)
)^2)) + (5.8(u(t))[18] + 14.5(u(t))[19] - 2.9(u(t))[20]) / ((0.3 / ((1.0e-6
 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[
19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))
[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4
(u(t))[20])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) 
+ (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u
(t))[19])^2))^2)) + (0.9666666666666667(u(t))[21] + 5.316666666666667(u(t))
[19] - 3.3833333333333337(u(t))[20]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))
[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4
(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 
2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[
18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[19] + 
(u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[
20])^2))^2)) + (2.9(u(t))[19] + 7.25(u(t))[18] - 1.45(u(t))[17]) / ((0.3 / 
((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((
3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))
[21] - 4(u(t))[20])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[
20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-
6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))
[19] + (u(t))[17] - 4(u(t))[18])^2))^2)) + (2.9(u(t))[18] - 5.8(u(t))[20] -
 14.5(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 
2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[
18] + (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4
(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//
12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2)) + (1.45(u(t))[21] - 2.
9(u(t))[19] - 7.25(u(t))[20]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + 
(u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[
18])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//
12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (
u(t))[21] - 4(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[
21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2)
)^2)))*(u(t))[19], Differential(t)((u(t))[20]) ~ ((3.3833333333333337(u(t))
[19] - 0.9666666666666667(u(t))[18] - 5.316666666666667(u(t))[20]) / ((0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] +
 (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[20] +
 (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t)
)[21])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t
))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2))*((1.0
e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t
))[20] + (u(t))[18] - 4(u(t))[19])^2))^2)) + (1.45(u(t))[22] - 2.9(u(t))[20
] - 7.25(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^
2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t
))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(
t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] 
- 4(u(t))[19])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t
))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (5
.316666666666667(u(t))[20] + 0.9666666666666667(u(t))[22] - 3.3833333333333
337(u(t))[21]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(
u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19
] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[20
] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u
(t))[21])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21
])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (5.8(u(
t))[19] + 14.5(u(t))[20] - 2.9(u(t))[21]) / ((0.3 / ((1.0e-6 + (13//12)*(((
u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18
] - 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21]
)^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u
(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[19]
 - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2
)) + (2.9(u(t))[20] + 7.25(u(t))[19] - 1.45(u(t))[18]) / ((0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20
] + (u(t))[18] - 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19]
 - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + 
(13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2))*((1.0e-6 + (13//1
2)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(
t))[18] - 4(u(t))[19])^2))^2)) + (2.9(u(t))[19] - 5.8(u(t))[21] - 14.5(u(t)
)[20]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)
*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*
((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t
))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(
t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t
))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)))*(u(t))[20], Differential(t)((u(
t))[21]) ~ ((3.3833333333333337(u(t))[20] - 0.9666666666666667(u(t))[19] - 
5.316666666666667(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(
t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//1
2)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u
(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19
] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))
^2)) + (1.45(u(t))[23] - 2.9(u(t))[21] - 7.25(u(t))[22]) / ((0.6 / ((1.0e-6
 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22
] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19
] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2)
 + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (
u(t))[23] - 4(u(t))[22])^2))^2)) + (5.316666666666667(u(t))[21] + 0.9666666
666666667(u(t))[23] - 3.3833333333333337(u(t))[22]) / ((0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] +
 (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - 
(u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13
//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))
[23] - 4(u(t))[22])^2))^2)) + (7.25(u(t))[20] + 2.9(u(t))[21] - 1.45(u(t))[
19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])
^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))
[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))
[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^
2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (1
3//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (5.8(u(t))[20] + 
14.5(u(t))[21] - 2.9(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] 
+ (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t)
)[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13
//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1
//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] +
 (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[
22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(
u(t))[20] - 14.5(u(t))[21] - 5.8(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[2
1])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[2
0])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / (
(1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3
(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2
0] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))
^2)))*(u(t))[21], Differential(t)((u(t))[22]) ~ ((5.8(u(t))[21] + 14.5(u(t)
)[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[2
0] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((
u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (1.45(u(t))[24
] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[2
2] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(
u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[2
2] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u
(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[2
3])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*((
(u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[2
3])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[
20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (3.3833333333333337(u(t))[21] - 0
.9666666666666667(u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t)
)[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2
) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] +
 (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(
u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))
[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + 
(u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + 
(u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))
[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*((
(u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (0.9666666666666667(u(t))[
24] + 5.316666666666667(u(t))[22] - 3.3833333333333337(u(t))[23]) / ((0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*
(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))
[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))
[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e
-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t)
)[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], Differential(t)((u(t
))[23]) ~ ((1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t)
)[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t
))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])
^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])
^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + 
(1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23]
 + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.316666666666667(u(t))[23] + 0.966
6666666666667(u(t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24]
 - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23
] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) +
 (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4
)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u
(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(
t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//1
2)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u
(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u
(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[2
4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2)
 + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (3.3833333333
333337(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.316666666666667(u(t))[2
3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*((
(u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[
21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[
25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1
//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (2.9(u(t))[22] - 1
4.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (
u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 
0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1/
/4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + 
(u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[2
4])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.8(u
(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u
(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((
u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22
] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^
2)))*(u(t))[23], Differential(t)((u(t))[24]) ~ ((3.3833333333333337(u(t))[2
3] - 0.9666666666666667(u(t))[22] - 5.316666666666667(u(t))[24]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (
u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + 
(u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[
25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))
[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-
6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))
[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[26] + 
5.316666666666667(u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0
e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t
))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(
t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] 
- 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^
2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] 
+ (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.4
5(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(
t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)
*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23]
)^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t)
)[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(
t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] 
- 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24]
 - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t
))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] -
 (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))
 + (1.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 
2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] -
 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (
1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t)
)[26] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[
25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(
((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))
[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t)
)[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))
[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t))[24], Differential(t)((u(t)
)[25]) ~ ((5.316666666666667(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.3
833333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t
))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26
])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t
))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27]
 - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2
)) + (7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23
] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
5] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u
(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + 
(13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)
*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(
t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t
))[26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24
])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(
t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u
(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) 
+ (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.38333333333
33337(u(t))[24] - 0.9666666666666667(u(t))[23] - 5.316666666666667(u(t))[25
]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2)
 + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[
27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2)
)^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13/
/12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[24] - 5.
8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (
u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[
24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//
12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (
u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26
])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (5.8(u(
t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u
(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25
] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[2
7] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24]
 - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2
)))*(u(t))[25], Differential(t)((u(t))[26]) ~ ((3.3833333333333337(u(t))[25
] - 0.9666666666666667(u(t))[24] - 5.316666666666667(u(t))[26]) / ((0.1 / (
(1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3
(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[
28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[2
7])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[
26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] -
 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 
2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1
//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2
(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))
[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.8(
u(t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(
((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[
24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))
[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*((
(u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2
5] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))
^2)) + (2.9(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6
 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[
26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))
[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4
(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) 
+ (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (
u(t))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(
t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[
25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / (
(1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3
(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[2
6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u
(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.316666666666667(u(t))[26]
 + 0.9666666666666667(u(t))[28] - 3.3833333333333337(u(t))[27]) / ((0.3 / (
(1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3
(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[
28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[2
7])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[
26] + (u(t))[28] - 4(u(t))[27])^2))^2)))*(u(t))[26], Differential(t)((u(t))
[27]) ~ ((7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t)
)[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^
2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] +
 (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(
u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))
[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + 
(u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] +
 (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))
[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*((
(u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[
26] - 0.9666666666666667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*(
(3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))
[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e
-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t)
)[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] 
- 14.5(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] -
 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (1
3//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[29] - 2
.9(u(t))[27] - 7.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] +
 (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))
[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))
[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + 
(u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))
[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2
))^2)) + (0.9666666666666667(u(t))[29] + 5.316666666666667(u(t))[27] - 3.38
33333333333337(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t)
)[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*
(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)
*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t)
)[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)
))*(u(t))[27], Differential(t)((u(t))[28]) ~ ((3.3833333333333337(u(t))[27]
 - 0.9666666666666667(u(t))[26] - 5.316666666666667(u(t))[28]) / ((0.6 / ((
1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(
t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(
t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29
])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 
+ (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[2
6] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 
2.9(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u
(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27
] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28
] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u
(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12
)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (2.9(u(t))[28] + 7.25(
u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(
t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12
)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(
t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26]
 - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^
2)) + (1.45(u(t))[30] - 2.9(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29]
 - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26]
 - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^
2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) +
 (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4
)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u
(t))[30] - 2(u(t))[29])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t
))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12
)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(
t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(
t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(
t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (0.9666666666666667(u(t))[30]
 + 5.316666666666667(u(t))[28] - 3.3833333333333337(u(t))[29]) / ((0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((
u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28
])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29
])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 
+ (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[2
8] + (u(t))[30] - 2(u(t))[29])^2))^2)))*(u(t))[28]], t, SymbolicUtils.Term{
Real, Nothing}[(u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t)
)[8], (u(t))[9], (u(t))[10], (u(t))[11], (u(t))[12]  …  (u(t))[19], (u(t))[
20], (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26]
, (u(t))[27], (u(t))[28]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbol
ics.Equation[(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0.0, (u(t))[29] ~ 
0.2(u(t))[30] + 2.0(u(t))[28] + (u(t))[26] - 0.2(u(t))[25] - 2.0(u(t))[27],
 (u(t))[2] ~ 0.2(u(t))[1] + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u
(t))[4]], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefVa
lue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Sym
bolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symb
olics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbo
lics.Num}(undef, 0, 0)), :pdesys1, ModelingToolkit.ODESystem[], Dict{Any, A
ny}((u(t))[17] => 0.5517241379310345, (u(t))[18] => 0.5862068965517241, (u(
t))[8] => 0.2413793103448276, (u(t))[10] => 0.3103448275862069, (u(t))[27] 
=> 0.896551724137931, (u(t))[28] => 0.9310344827586207, (u(t))[2] => 0.0344
82758620689655, (u(t))[24] => 0.7931034482758621, (u(t))[30] => 1.0, (u(t))
[21] => 0.6896551724137931…), nothing, nothing, nothing, ModelingToolkit.Sy
mbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Symboli
cs.Equation[], Symbolics.Equation[])], ModelingToolkit.SymbolicDiscreteCall
back[], MethodOfLines.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{
1, 1, MethodOfLines.CenterAlignedGrid}, MethodOfLines.MOLFiniteDifference{M
ethodOfLines.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretization}, Mo
delingToolkit.PDESystem, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscre
tization}(MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid
}(MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.Immu
tableDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.Immutabl
eDict{DataType, Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0,
 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}
, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => 
[t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], 
Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x =
> 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}
}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any
}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(
t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  
…  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], 
(u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Re
al, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePre
cision{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758
620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, A
ny}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecisi
on{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils
.Sym{Real, Base.ImmutableDict{DataType, Any}}, Float64}(x => 0.034482758620
689655), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, 
CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices(
(30,))), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, 
CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices(
(30,)))), MethodOfLines.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid
, MethodOfLines.ScalarizedDiscretization}(Dict{Symbolics.Num, Int64}(x => 3
0), t, 2, MethodOfLines.WENOScheme(1.0e-6), MethodOfLines.CenterAlignedGrid
(), true, false, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbo
l, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem
(Symbolics.Equation[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t,
 x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0
 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..
20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbo
lics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, A
ny[], :pdesys1, nothing), false, Base.RefValue{Any}(nothing)), ModelingTool
kit.SystemStructures.TearingState{ModelingToolkit.ODESystem}(ModelingToolki
t.ODESystem(Symbolics.Equation[Differential(t)((u(t))[3]) ~ ((3.38333333333
33337(u(t))[2] - 0.9666666666666667(u(t))[1] - 5.316666666666667(u(t))[3]) 
/ ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1
//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[
3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])
^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13
//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t
))[1] - 4(u(t))[2])^2))^2)) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4])
 / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (
1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))
[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4]
)^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t
))[3])^2))^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / (
(1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(
t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//
12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2)) + (2.9(u(t))[3] + 7.25(u(t))[2] - 1.45(u(t))[1]) / ((0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(
u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13
//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4
(u(t))[2])^2))^2)) + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(t))
[5] - 3.3833333333333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1
] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[
2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)
*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] -
 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4
])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))
[2] - 14.5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[
1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))
[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12
)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((
3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] 
- 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//
12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)))*(u(t))[3], Differential(
t)((u(t))[4]) ~ ((7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / (
(1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(
t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//
12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u
(t))[3])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / 
((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u
(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13/
/12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^
2)) + (3.3833333333333337(u(t))[3] - 0.9666666666666667(u(t))[2] - 5.316666
666666667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] -
 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + 
(u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(
t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2)
)^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)
*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (0.9666666666666667(u(t))
[6] + 5.316666666666667(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / (
(1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(
t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//
12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u
(t))[5])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / 
((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u
(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)
 + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13/
/12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^
2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (
13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u
(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))
[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t)
)[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(
t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2)
)^2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((0.9666666666666667(u(t))[7
] + 5.316666666666667(u(t))[5] - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1
.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[
6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] 
- 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 
0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)
*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t
))[6])^2))^2)) + (3.3833333333333337(u(t))[4] - 0.9666666666666667(u(t))[3]
 - 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (
u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((
u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(
t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u
(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] 
+ 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (
u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(
u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[
4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2)
 + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + 
(u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u
(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2)
)^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12
)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t)
)[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] 
- 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] 
+ (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + 
(u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^
2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//
4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t
))[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3]
 - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4]
 + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] +
 (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])
^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[
4] + (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[5], Differential(t)((u(t))[6])
 ~ ((3.3833333333333337(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.31666666
6666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(
u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u
(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t)
)[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[
6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4
(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (
u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t
))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))
^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] +
 (u(t))[7] - 2(u(t))[6])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t
))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2
) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2
(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(
t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-
6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6]
 + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.316666666666667(u(t))[6] + 0.966666
6666666667(u(t))[8] - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t)
)[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5
])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[
6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t)
)[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^
2)) + (2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(
t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))
[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(
t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2)
)^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u
(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t)
)[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t
))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(
t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))
[6], Differential(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.9666666
666666667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[
7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7]
 + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))
[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)
) + (0.9666666666666667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.383333333
3333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) +
 (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u
(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t)
)[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[
7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2)
 + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + 
(u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(
t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2)
)^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)
*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t)
)[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2
) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (
u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2
))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6]
 + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(
t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*
(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((
(u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 
4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u
(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e
-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] 
- 2(u(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((
0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] 
+ (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (
u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^
2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2)
 + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*
((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9
] - 2(u(t))[8])^2))^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ ((3.383333
3333333337(u(t))[7] - 0.9666666666666667(u(t))[6] - 5.316666666666667(u(t))
[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2
) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(
t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-
6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6]
 + (u(t))[8] - 2(u(t))[7])^2))^2)) + (7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u
(t))[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9
])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9]
 - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 
4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.
316666666666667(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] 
+ (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (
u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*((
(u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))
[9])^2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((
1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(
t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(
t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 
4(u(t))[9])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*(
(3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) +
 (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(
((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])
^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8]
 + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - 
(u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(
((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] 
- (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(
u(t))[8], Differential(t)((u(t))[9]) ~ ((5.316666666666667(u(t))[9] + 0.966
6666666666667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (
u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)
*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(
u(t))[10])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0
.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4
)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[
9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])
^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1
3//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (
u(t))[11] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[8] - 0.9666666
666666667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//
12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t
))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t)
)[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t
))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (
u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^
2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6
 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9
] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9]
 + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[
8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12
)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^
2)) + (2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u
(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t
))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9]
 + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[
8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9
] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t
))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13
//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u
(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2))^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((7.25(u(t))[9] + 2.9(u(t
))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[
10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) +
 (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 
2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))
[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (5.8(u(t
))[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(
t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4
(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2
(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9]
 + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))
[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (3.38
33333333333337(u(t))[9] - 0.9666666666666667(u(t))[8] - 5.316666666666667(u
(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[
11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))
[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//
4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (0.9666666666666667(u(
t))[12] + 5.316666666666667(u(t))[10] - 3.3833333333333337(u(t))[11]) / ((0
.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)
*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)
*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t)
)[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[
11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[
10] + (u(t))[12] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 1
4.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u
(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (
u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[1
1])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(
t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10
] - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] 
- 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9]
 + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10
] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(
t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11
])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10
], Differential(t)((u(t))[11]) ~ ((3.3833333333333337(u(t))[10] - 0.9666666
666666667(u(t))[9] - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u
(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t
))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12
)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] -
 4(u(t))[10])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) /
 ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (
1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2
(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4
(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(
((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t
))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[1
2])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*((
(u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9
] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + 
(13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.316666666666
667(u(t))[11] + 0.9666666666666667(u(t))[13] - 3.3833333333333337(u(t))[12]
) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u
(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13
] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12
)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[11] + 7.25(
u(t))[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t)
)[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)
*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t)
)[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 
2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) +
 (2.9(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u
(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t
))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12
)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])
^2))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ ((5.316666666666667(u(t
))[12] + 0.9666666666666667(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((0
.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11
] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[1
0] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u
(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(
u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(
u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))
[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13
])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(
u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((
(u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[1
4] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2
(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) +
 (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//
4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u
(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(
u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0
.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//
4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u
(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12
])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((
1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(
t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u
(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11
])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[1
3])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 
+ (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[1
2] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[11] - 0.
9666666666666667(u(t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e-
6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[1
3] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[
12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2)
)^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2
) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13
//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + 
(u(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u
(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//
12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (
u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + 
(u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[
13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((
u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Differential(
t)((u(t))[19]) ~ ((3.3833333333333337(u(t))[18] - 0.9666666666666667(u(t))[
17] - 5.316666666666667(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1
7] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u
(t))[18])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + 
(13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19
] + (u(t))[21] - 4(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[17] + (u
(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18
])^2))^2)) + (5.8(u(t))[18] + 14.5(u(t))[19] - 2.9(u(t))[20]) / ((0.3 / ((1
.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u
(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((
u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21
] - 4(u(t))[20])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20]
)^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 +
 (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] 
- 2(u(t))[19])^2))^2)) + (0.9666666666666667(u(t))[21] + 5.316666666666667(
u(t))[19] - 3.3833333333333337(u(t))[20]) / ((0.3 / ((1.0e-6 + (13//12)*(((
u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17
] - 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[2
1] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u
(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1
9] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u
(t))[20])^2))^2)) + (2.9(u(t))[19] + 7.25(u(t))[18] - 1.45(u(t))[17]) / ((0
.3 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//
4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (
u(t))[21] - 4(u(t))[20])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u
(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(
u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2)) + (2.9(u(t))[18] - 5.8(u(t))[
20] - 14.5(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[1
9] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u
(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21
] - 4(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + 
(13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2)) + (1.45(u(t))[21]
 - 2.9(u(t))[19] - 7.25(u(t))[20]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1
7] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u
(t))[18])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + 
(13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19
] + (u(t))[21] - 4(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[19] + (u
(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20
])^2))^2)))*(u(t))[19], Differential(t)((u(t))[20]) ~ ((3.3833333333333337(
u(t))[19] - 0.9666666666666667(u(t))[18] - 5.316666666666667(u(t))[20]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[
19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2
(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 
2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((
3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2)) + (1.45(u(t))[22] - 2.9(u(t
))[20] - 7.25(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[
21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(
((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))
[18] - 4(u(t))[19])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 
4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2))
 + (5.316666666666667(u(t))[20] + 0.9666666666666667(u(t))[22] - 3.38333333
33333337(u(t))[21]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20]
 - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t
))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] 
- 2(u(t))[21])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t
))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (5
.8(u(t))[19] + 14.5(u(t))[20] - 2.9(u(t))[21]) / ((0.3 / ((1.0e-6 + (13//12
)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t
))[18] - 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t)
)[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)
*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^
2))^2)) + (2.9(u(t))[20] + 7.25(u(t))[19] - 1.45(u(t))[18]) / ((0.3 / ((1.0
e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t
))[20] + (u(t))[18] - 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^
2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^
2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] 
+ (u(t))[18] - 4(u(t))[19])^2))^2)) + (2.9(u(t))[19] - 5.8(u(t))[21] - 14.5
(u(t))[20]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13
//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (1
//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] +
 (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18] 
+ (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t)
)[19])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(
((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)))*(u(t))[20], Differential(t
)((u(t))[21]) ~ ((3.3833333333333337(u(t))[20] - 0.9666666666666667(u(t))[1
9] - 5.316666666666667(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] 
- (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (
13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21]
 + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t
))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20]
)^2))^2)) + (1.45(u(t))[23] - 2.9(u(t))[21] - 7.25(u(t))[22]) / ((0.6 / ((1
.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t
))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t
))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22
])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21
] + (u(t))[23] - 4(u(t))[22])^2))^2)) + (5.316666666666667(u(t))[21] + 0.96
66666666666667(u(t))[23] - 3.3833333333333337(u(t))[22]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[
21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
0] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))
^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) 
+ (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (
u(t))[23] - 4(u(t))[22])^2))^2)) + (7.25(u(t))[20] + 2.9(u(t))[21] - 1.45(u
(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))
[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (
u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (
u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[
20])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2)
 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (5.8(u(t))[2
0] + 14.5(u(t))[21] - 2.9(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))
[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4
(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) 
+ (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6
 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[
19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u
(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + 
(2.9(u(t))[20] - 14.5(u(t))[21] - 5.8(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(
t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(
t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4
)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21]
)^2))^2)))*(u(t))[21], Differential(t)((u(t))[22]) ~ ((5.8(u(t))[21] + 14.5
(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(
t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12
)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(
t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])
^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (1.45(u(t
))[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22]
 - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])
^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(
t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22]
 + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(
t))[23])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//1
2)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(
t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(
t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u
(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (3.3833333333333337(u(t))[21
] - 0.9666666666666667(u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*((
(u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[2
3])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[
20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 
14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(
u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[2
1] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[2
2] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(
u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//1
2)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (0.9666666666666667(u
(t))[24] + 5.316666666666667(u(t))[22] - 3.3833333333333337(u(t))[23]) / ((
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13/
/12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(
u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(
u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*((
(u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], Differential(t)
((u(t))[23]) ~ ((1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + 
(u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] +
 (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))
[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))
[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e
-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t)
)[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.316666666666667(u(t))[23] + 
0.9666666666666667(u(t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t)
)[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t
))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])
^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])
^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + 
(1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23]
 + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.
45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (
13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23]
 + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23]
 + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(
t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22
])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (3.38333
33333333337(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.316666666666667(u(
t))[23]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//1
2)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//
12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u
(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u
(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[2
4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2)
 + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (2.9(u(t))[22
] - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22
] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) 
+ (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[2
3] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(
t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (
5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t
))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(
t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12
)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])
^2))^2)))*(u(t))[23], Differential(t)((u(t))[24]) ~ ((3.3833333333333337(u(
t))[23] - 0.9666666666666667(u(t))[22] - 5.316666666666667(u(t))[24]) / ((0
.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23
] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[2
4] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u
(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(
u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(
u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[2
6] + 5.316666666666667(u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / 
((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((
3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))
[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[
25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-
6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))
[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] 
- 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] -
 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (
1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 
2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8
(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*
(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))
[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t)
)[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(
((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[
23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2)
)^2)) + (1.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-
6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[2
5] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[
26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2
) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13
//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + 
(u(t))[26] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u
(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//
12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (
u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + 
(u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[
23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((
u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t))[24], Differential(t)(
(u(t))[25]) ~ ((5.316666666666667(u(t))[25] + 0.9666666666666667(u(t))[27] 
- 3.3833333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] +
 (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t)
)[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t
))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] +
 (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^
2))^2)) + (7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t
))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(
t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] 
- 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^
2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] 
+ (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.2
5(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t
))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] 
+ (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25]
 + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t
))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.383333
3333333337(u(t))[24] - 0.9666666666666667(u(t))[23] - 5.316666666666667(u(t
))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24
])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(
t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u
(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26
])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) +
 (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[24]
 - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25
] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u
(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + 
(13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25
] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t
))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (5
.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*
((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t
))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(
t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)
*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^
2))^2)))*(u(t))[25], Differential(t)((u(t))[26]) ~ ((3.3833333333333337(u(t
))[25] - 0.9666666666666667(u(t))[24] - 5.316666666666667(u(t))[26]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4
)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u
(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(
t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u
(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[
26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2)
 + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27
] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(
u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + 
(5.8(u(t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//
12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u
(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (
u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[2
7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//1
2)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2))^2)) + (2.9(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1
.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u
(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((
u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28
] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27]
)^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26
] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5
.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u
(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4
)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(
t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)
*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.316666666666667(u(t)
)[26] + 0.9666666666666667(u(t))[28] - 3.3833333333333337(u(t))[27]) / ((0.
3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4
)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//
12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u
(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(
t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u
(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)))*(u(t))[26], Differential(t)((
u(t))[27]) ~ ((7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*((
(u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[2
7])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[
28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[
25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] -
 2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(
u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[2
6] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[
27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(
u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (3.3833333333333337(u
(t))[26] - 0.9666666666666667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((
0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1/
/4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + 
(u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (
u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*((
(u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))
[28] - 14.5(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[
29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2)
)^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2)
 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[2
8] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) +
 (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[29
] - 2.9(u(t))[27] - 7.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[
27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(
u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(
u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[2
6] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (
u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[2
8])^2))^2)) + (0.9666666666666667(u(t))[29] + 5.316666666666667(u(t))[27] -
 3.3833333333333337(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + 
(u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))
[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13
//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + 
(u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))
[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2
))^2)))*(u(t))[27], Differential(t)((u(t))[28]) ~ ((3.3833333333333337(u(t)
)[27] - 0.9666666666666667(u(t))[26] - 5.316666666666667(u(t))[28]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] 
+ (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] 
+ (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t
))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t
))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.
0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(
t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[2
8] - 2.9(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] 
- 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t
))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] 
- 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (1
3//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (2.9(u(t))[28] + 
7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] 
+ (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t
))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (1
3//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (
1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] 
+ (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t)
)[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])
^2))^2)) + (1.45(u(t))[30] - 2.9(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t)
)[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t)
)[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])
^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])
^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + 
(1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28]
 + (u(t))[30] - 2(u(t))[29])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.
5(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (1
3//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (
1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] 
+ (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] 
+ (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t
))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*
(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (0.9666666666666667(u(t)
)[30] + 5.316666666666667(u(t))[28] - 3.3833333333333337(u(t))[29]) / ((0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12
)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t
))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t
))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.
0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(
t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)))*(u(t))[28]], t, SymbolicUtils.
Term{Real, Nothing}[(u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], 
(u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11], (u(t))[12]  …  (u(t))[19], (u
(t))[20], (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t)
)[26], (u(t))[27], (u(t))[28]], Any[], Dict{Any, Any}(:u => u(t)), Any[], S
ymbolics.Equation[(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[29] ~ 0.2(u(t))[30
] + 2.0(u(t))[28] + (u(t))[26] - 0.2(u(t))[25] - 2.0(u(t))[27], (u(t))[1] ~
 0.0, (u(t))[2] ~ 0.2(u(t))[1] + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 
2.0(u(t))[4]], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.
RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matri
x{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix
{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{
Symbolics.Num}(undef, 0, 0)), :pdesys1, ModelingToolkit.ODESystem[], Dict{A
ny, Any}((u(t))[17] => 0.5517241379310345, (u(t))[18] => 0.5862068965517241
, (u(t))[8] => 0.2413793103448276, (u(t))[10] => 0.3103448275862069, (u(t))
[27] => 0.896551724137931, (u(t))[28] => 0.9310344827586207, (u(t))[2] => 0
.034482758620689655, (u(t))[24] => 0.7931034482758621, (u(t))[30] => 1.0, (
u(t))[21] => 0.6896551724137931…), nothing, nothing, nothing, ModelingToolk
it.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Sy
mbolics.Equation[], Symbolics.Equation[])], ModelingToolkit.SymbolicDiscret
eCallback[], MethodOfLines.MOLMetadata{Val{true}(), MethodOfLines.DiscreteS
pace{1, 1, MethodOfLines.CenterAlignedGrid}, MethodOfLines.MOLFiniteDiffere
nce{MethodOfLines.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretization
}, ModelingToolkit.PDESystem, Base.RefValue{Any}, MethodOfLines.ScalarizedD
iscretization}(MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.CenterAligne
dGrid}(MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base
.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.Imm
utableDict{DataType, Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => 
(0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Not
hing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(
u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}
[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64
}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType,
 Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType
, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3]
, (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[
10]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[
26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30]]), Dict{SymbolicUtils.S
ym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, Base.Twi
cePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.0344
82758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataTy
pe, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePr
ecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dict{Symbolic
Utils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Float64}(x => 0.0344827
58620689655), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, An
y}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianInd
ices((30,))), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, An
y}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianInd
ices((30,)))), MethodOfLines.MOLFiniteDifference{MethodOfLines.CenterAligne
dGrid, MethodOfLines.ScalarizedDiscretization}(Dict{Symbolics.Num, Int64}(x
 => 30), t, 2, MethodOfLines.WENOScheme(1.0e-6), MethodOfLines.CenterAligne
dGrid(), true, false, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{
Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDES
ystem(Symbolics.Equation[Differential(x)(u(t, x))*u(t, x) + Differential(t)
(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) 
~ 1.0 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 
0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], 
Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothi
ng, Any[], :pdesys1, nothing), false, Base.RefValue{Any}(nothing)), nothing
, ModelingToolkit.Substitutions(Symbolics.Equation[(u(t))[30] ~ -(-1.0 / (1
 + t)), (u(t))[29] ~ 0.2(u(t))[30] + 2.0(u(t))[28] + (u(t))[26] - 0.2(u(t))
[25] - 2.0(u(t))[27], (u(t))[1] ~ 0.0, (u(t))[2] ~ 0.2(u(t))[1] + 2.0(u(t))
[3] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[4]], [Int64[], [1], Int64[], [3]
], Symbolics.Equation[Differential(t)((u(t))[3]) ~ ((1.45(u(t))[5] - 2.9(u(
t))[3] - 7.25(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5
] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) 
+ 0.6 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1
//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2) + 0.1
 / ((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t
))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5
])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (1
3//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.316666666666667(u
(t))[3] + 0.9666666666666667(u(t))[5] - 3.3833333333333337(u(t))[4]) / ((0.
3 / ((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(
t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[
5])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[
4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2
))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5]
 - 2(u(t))[4])^2))^2)) + (2.9(u(t))[5] - 0.58(u(t))[6] - 8.7(u(t))[3] - 11.
6(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[
4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.
0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(u
(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + 
(1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2))*(
(1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.
0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2)) + (1.45000000
00000002(u(t))[3] + 3.3833333333333337(u(t))[5] - 0.6766666666666667(u(t))[
6] - 6.7666666666666675(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] 
+ (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4
])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4
])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[
3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t))[3] -
 4(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.
0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(
t))[3] - 4(u(t))[5])^2))^2)) + (17.4(u(t))[3] + 7.25(u(t))[5] - 1.450000000
0000002(u(t))[6] - 14.5(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*((0.4(u(t))
[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] 
+ 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (13//
12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u
(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] -
 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.
0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(
t))[3] - 4(u(t))[5])^2))^2)) + (26.1(u(t))[3] + 5.8(u(t))[5] - 1.16(u(t))[6
] - 14.5(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))
[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] 
- 5.0(u(t))[3] - 4(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))[5]
 - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u
(t))[6] - 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(
t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2)
)^2))*((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//
4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2)))*(u(t)
)[3], Differential(t)((u(t))[4]) ~ ((5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t
))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4]
)^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[
3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] 
+ (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14.
5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t
))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u
(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (0.9666666666666667(u(t))[6] 
+ 5.316666666666667(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0
e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))
[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t
))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[
5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + 
(1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (
u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))
[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^
2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3]
 + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + 
(u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13/
/12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (0.19333333333333336(u
(t))[6] + 1.4500000000000004(u(t))[3] - 0.9666666666666667(u(t))[5] - 3.383
3333333333337(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t
))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0
(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] 
- (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))
[3])^2))^2)) + (0.29(u(t))[6] + 4.35(u(t))[3] + 5.8(u(t))[4] - 1.45(u(t))[5
]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2)
 + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] +
 (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u
(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1/
/4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2)))*(u(t))[
4], Differential(t)((u(t))[5]) ~ ((3.3833333333333337(u(t))[4] - 0.96666666
66666667(u(t))[3] - 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[
5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^
2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] 
+ (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3
] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))
 + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])
^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5]
 + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6
])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (0.9666666
666666667(u(t))[7] + 5.316666666666667(u(t))[5] - 3.3833333333333337(u(t))[
6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u
(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(
t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t)
)[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + 
(u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t)
)[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*((
(u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(
u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(
t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] 
+ (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t
))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2
(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u
(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-
6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] -
 2(u(t))[5])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) 
+ (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7]
 - 4(u(t))[6])^2))^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~ ((2.9(u(t))
[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5
] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//1
2)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8]
 - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))
[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (3.38333
33333333337(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.316666666666667(u(t)
)[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2)
 + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(
u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t
))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] 
+ (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.316666666666667(u(t))[6] + 0.9666666
666666667(u(t))[8] - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//
4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))
[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5]
)^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6
] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))
[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2
)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(
t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[
7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t
))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))
^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(
t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))
[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t
))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)) + (2.9(u
(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u
(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13
//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))
[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], Different
ial(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.9666666666666667(u(t)
)[5] - 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] 
- (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)
*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] -
 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (7.25(u(t)
)[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6
] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4
)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9]
 - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t)
)[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (5.8(u(t
))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//
4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9
] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13
//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(
u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[
8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[
6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (
13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667
(u(t))[9] + 5.316666666666667(u(t))[7] - 3.3833333333333337(u(t))[8]) / ((0
.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (
u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2
))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) +
 (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9]
 - 2(u(t))[8])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((
0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] 
+ (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (
u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^
2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2)
 + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7]
)^2))^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ ((7.25(u(t))[7] + 2.9(u(
t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[
10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8]
 + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[
7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (
13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[10] - 2
.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u
(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^
2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) 
+ (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u
(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])
^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (3.383333333
3333337(u(t))[7] - 0.9666666666666667(u(t))[6] - 5.316666666666667(u(t))[8]
) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) +
 (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (
1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))
[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + 
(u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))
[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2
) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(
t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-
6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] -
 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*
((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^
2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) 
+ (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8]
)^2))^2)) + (0.9666666666666667(u(t))[10] + 5.316666666666667(u(t))[8] - 3.
3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t
))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(
t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t
))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2
) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)))*(u(t))[8], Diff
erential(t)((u(t))[9]) ~ ((2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / 
((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))
[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[1
0])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + 
(u(t))[9] - 2(u(t))[8])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t
))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10
])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.
0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] 
- (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3
(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[8
] - 0.9666666666666667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((0.3 / ((1
.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(
t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u
(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (1
3//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] -
 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)
*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11
] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])
^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u
(t))[9])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((
3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] -
 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) 
+ (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)
*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))
[9])^2))^2)) + (5.316666666666667(u(t))[9] + 0.9666666666666667(u(t))[11] -
 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (
u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^
2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^
2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10]
 - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)))*(u(t)
)[9], Differential(t)((u(t))[10]) ~ ((5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u
(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(
t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2
))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9
] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (7.25(u(t))[9] + 2.9(u(t))[10] - 1.
45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t
))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3
(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (
1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (1.45(u(t))[12] - 2
.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + 
(u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))
[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] -
 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))
 + (3.3833333333333337(u(t))[9] - 0.9666666666666667(u(t))[8] - 5.316666666
666667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 
2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] 
+ (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t)
)[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2
) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (2.9(u(t))[9] 
- 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))
[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//1
2)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(
t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^
2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (0.96666666
66666667(u(t))[12] + 5.316666666666667(u(t))[10] - 3.3833333333333337(u(t))
[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6
 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[
10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9
] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)
*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Differentia
l(t)((u(t))[11]) ~ ((2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.
6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10]
 + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11]
 + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(
t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(
t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0
e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t)
)[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[10] - 
0.9666666666666667(u(t))[9] - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e
-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))
[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[1
0] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))
^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) 
+ (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u
(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t)
)[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10]
)^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))
[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))
[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))
[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11] 
- 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) 
+ (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[
11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u
(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12
)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (1.45(u(t))[13] - 2.9(
u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(
t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*
(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t)
)[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] -
 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)
) + (5.316666666666667(u(t))[11] + 0.9666666666666667(u(t))[13] - 3.3833333
333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])
^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.
0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(
t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u
(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] -
 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t)
)[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t
))[11], Differential(t)((u(t))[12]) ~ ((5.316666666666667(u(t))[12] + 0.966
6666666666667(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13]
 - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12
] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) 
+ (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u
(t))[14] - 4(u(t))[13])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(
t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//1
2)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u
(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (
u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[1
3])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2)
 + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (1.45(u(t))[1
4] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[1
1] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))
^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2)
 + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[
12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + 
(u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[
13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u
(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (
u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[1
1])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[
13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6
 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13
] - 2(u(t))[12])^2))^2)) + (3.3833333333333337(u(t))[11] - 0.96666666666666
67(u(t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[1
2])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[
11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / (
(1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3
(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4
(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((
0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[1
1] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[
10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(
u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2
(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*(
(1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u
(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Differential(t)((u(t))[19])
 ~ ((2.9(u(t))[19] + 7.25(u(t))[18] - 1.45(u(t))[17]) / ((0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19]
 + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[19
] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(
t))[20])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (
13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t
))[17] - 4(u(t))[18])^2))^2)) + (1.45(u(t))[21] - 2.9(u(t))[19] - 7.25(u(t)
)[20]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18
])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t
))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(
t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) +
 (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2)) + (3.383333333333
3337(u(t))[18] - 0.9666666666666667(u(t))[17] - 5.316666666666667(u(t))[19]
) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2)
 + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20
] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[2
1] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//
4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2)) + (5.8(u(t))[18] + 14.
5(u(t))[19] - 2.9(u(t))[20]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[17] + (
u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[1
8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[
20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u
(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20]
)^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2)) + (2.9(u(t
))[18] - 5.8(u(t))[20] - 14.5(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u
(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17]
 - 4(u(t))[18])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])
^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(
t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[18] 
- (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2)
) + (0.9666666666666667(u(t))[21] + 5.316666666666667(u(t))[19] - 3.3833333
333333337(u(t))[20]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19
] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) 
+ (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20]
 - 2(u(t))[19])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u
(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2)))*(u
(t))[19], Differential(t)((u(t))[20]) ~ ((1.45(u(t))[22] - 2.9(u(t))[20] - 
7.25(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) +
 (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[2
0] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[
18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(
u(t))[19])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[2
1])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u
(t))[20] + 7.25(u(t))[19] - 1.45(u(t))[18]) / ((0.3 / ((1.0e-6 + (13//12)*(
((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[
18] - 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[2
1])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*((
(u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4
(u(t))[19])^2))^2)) + (5.316666666666667(u(t))[20] + 0.9666666666666667(u(t
))[22] - 3.3833333333333337(u(t))[21]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t
))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] -
 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2
) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t)
)[20] + (u(t))[22] - 2(u(t))[21])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[20] +
 (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t)
)[21])^2))^2)) + (3.3833333333333337(u(t))[19] - 0.9666666666666667(u(t))[1
8] - 5.316666666666667(u(t))[20]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] 
- (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)
 + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (
13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20]
 + (u(t))[18] - 4(u(t))[19])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[18] + (u(
t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19]
)^2))^2)) + (2.9(u(t))[19] - 5.8(u(t))[21] - 14.5(u(t))[20]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t)
)[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t)
)[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])
^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19]
)^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] -
 2(u(t))[20])^2))^2)) + (5.8(u(t))[19] + 14.5(u(t))[20] - 2.9(u(t))[21]) / 
((0.3 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (
1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 
2(u(t))[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 
4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2))
*((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + 
(u(t))[21] - 2(u(t))[20])^2))^2)))*(u(t))[20], Differential(t)((u(t))[21]) 
~ ((1.45(u(t))[23] - 2.9(u(t))[21] - 7.25(u(t))[22]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 
2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 
4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (
1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t)
)[23] - 4(u(t))[22])^2))^2)) + (5.316666666666667(u(t))[21] + 0.96666666666
66667(u(t))[23] - 3.3833333333333337(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(
t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t
))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12
)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23]
 - 4(u(t))[22])^2))^2)) + (3.3833333333333337(u(t))[20] - 0.966666666666666
7(u(t))[19] - 5.316666666666667(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u
(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21
])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20
])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((
1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(
u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[2
1] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(
u(t))[20])^2))^2)) + (7.25(u(t))[20] + 2.9(u(t))[21] - 1.45(u(t))[19]) / ((
0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1/
/4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(
u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(
u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*((
(u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (5.8(u(t))[20] + 14.5(u(t)
)[21] - 2.9(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[
23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((
u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[2
1] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) +
 (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[20]
 - 14.5(u(t))[21] - 5.8(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20]
 - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + 
(13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21
] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t
))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)))*(u(
t))[21], Differential(t)((u(t))[22]) ~ ((3.3833333333333337(u(t))[21] - 0.9
666666666666667(u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[
20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
1] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))
^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) 
+ (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (
u(t))[22] - 2(u(t))[21])^2))^2)) + (5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u(
t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[2
1])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u
(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u
(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[2
3])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u
(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[2
3] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20]
 - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(
t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24]
 - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (
13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (7.25(u(t))[21] 
+ 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22]
 + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(
t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (
13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + 
(1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22]
 + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t
))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21]
)^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u
(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22]
)^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23]
)^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22
] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.3
16666666666667(u(t))[22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6
 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[
20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
1] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))
^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) 
+ (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (
u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~
 ((3.3833333333333337(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.31666666
6666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2
) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e
-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t)
)[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] -
 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (5.
8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(
((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))
[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t)
)[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*
(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2
))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-
6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[
23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2)
)^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2)
 + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1/
/4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(
u(t))[23])^2))^2)) + (5.316666666666667(u(t))[23] + 0.9666666666666667(u(t)
)[25] - 3.3833333333333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2)
)^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2
) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))
[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + 
(u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))
[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + 
(u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] +
 (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))
[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))
[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e
-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t)
)[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (1.45(u(t))[25] - 2.9(u(t))[23]
 - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2
) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e
-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t)
)[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] -
 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t)
)[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t
))[23], Differential(t)((u(t))[24]) ~ ((1.45(u(t))[26] - 2.9(u(t))[24] - 7.
25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (
13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24]
 + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22
] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(
t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25
])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(
t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((
u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26
] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u
(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2
2] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u
(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4
)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u
(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(
t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1
.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t
))[25] - 2(u(t))[24])^2))^2)) + (3.3833333333333337(u(t))[23] - 0.966666666
6666667(u(t))[22] - 5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(
t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u
(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.
1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4
)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22
] - 4(u(t))[23])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(
t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26]
 - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24
] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^
2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23]
 + (u(t))[25] - 2(u(t))[24])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.31
6666666666667(u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[2
4] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(
u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) +
 (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u
(t))[26] - 4(u(t))[25])^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ 
((7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + 
(u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] +
 (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))
[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13/
/12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[
25] - 2(u(t))[24])^2))^2)) + (5.316666666666667(u(t))[25] + 0.9666666666666
667(u(t))[27] - 3.3833333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t)
)[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*
(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] -
 4(u(t))[26])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) /
 ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (
13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] -
 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] 
- 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*
((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t
))[24] - 0.9666666666666667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//1
2)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(
t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u
(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u
(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t))[
25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23]
 - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) 
+ (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26]
 - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (
13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (2.9(u(t))[24] -
 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] 
+ (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (1
3//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] 
+ (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))
[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t)
)[25], Differential(t)((u(t))[26]) ~ ((2.9(u(t))[26] + 7.25(u(t))[25] - 1.4
5(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(
t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1
 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)
*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t
))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25]
)^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (5.8(u(t)
)[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(
t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] 
- 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28]
 - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t
))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] -
 (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))
 + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 + (
13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] 
+ (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26]
 + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t
))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (1
3//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t)
)[28] - 4(u(t))[27])^2))^2)) + (5.316666666666667(u(t))[26] + 0.96666666666
66667(u(t))[28] - 3.3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(
t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u
(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12
)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28]
 - 4(u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[25] - 0.966666666666666
7(u(t))[24] - 5.316666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)*((
(u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[2
4] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[
28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((
u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(
u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((0
.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//
4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (
u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u
(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(
t))[27] - 2(u(t))[26])^2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ (
(7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.1 / ((1.0e-6 + (13/
/12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)
*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])
^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])
^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t)
)[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] -
 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)
) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0.1 / ((1.0e-6 + (
13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1/
/4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[2
8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[2
6])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u
(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28]
)^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (3.38333
33333333337(u(t))[26] - 0.9666666666666667(u(t))[25] - 5.316666666666667(u(
t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u
(t))[25] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27
] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] 
- 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^
2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] 
+ (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5
(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.
2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))
[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[2
7] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28
])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28]
 - 2(u(t))[27])^2))^2)) + (0.19333333333333336 / (1 + t) + 0.96666666666666
67(u(t))[26] + 3.3833333333333337(u(t))[27] - 0.19333333333333336(u(t))[25]
 - 1.4500000000000004(u(t))[28]) / ((0.1 / ((1.0e-6 + (13//12)*((0.2 / (1 +
 t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) 
+ (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*((
(u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[2
7])^2))^2))*((1.0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25
] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.2
(u(t))[25] - 2.0(u(t))[28])^2))^2)) + (0.29 / (1 + t) + 1.45(u(t))[26] - 0.
29(u(t))[25] - 4.35(u(t))[28] - 5.8(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12
)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((
0.2 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2)
)^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2)
 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[2
8] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] 
- 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u
(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2)))*(u(t))[27], Differential
(t)((u(t))[28]) ~ ((2.9(u(t))[28] + 7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0(u(t))
[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[2
7])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8
(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13//12)*((-
0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26]
 - 3.0(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(
u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) +
 (3.3833333333333337(u(t))[27] - 0.9666666666666667(u(t))[26] - 5.316666666
666667(u(t))[28]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 
4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] 
- (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 
0.2(u(t))[25] - (u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.8 / (1 + 
t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t)
)[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0
(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] 
- 2(u(t))[27])^2))^2)) + (-1.16 / (1 + t) + 1.16(u(t))[25] + 14.5(u(t))[27]
 - 5.8(u(t))[26] - 26.1(u(t))[28]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28
] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u
(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25]
 + 3.0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t
) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t
))[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.
4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2))*((1.0e-6
 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2
.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - 
(u(t))[27])^2))^2)) + (-0.58 / (1 + t) + 0.58(u(t))[25] + 8.7(u(t))[28] + 1
1.6(u(t))[27] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + 
(u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))
[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3
.0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + 
(u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[2
6] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(
t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2))*((1.0e-6 + (
1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0(u
(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t
))[27])^2))^2)) + (1.45 / (1 + t) + -1.4500000000000002 / (1 + t) + 1.45000
00000000002(u(t))[25] + 14.5(u(t))[27] - 7.25(u(t))[26] - 17.4(u(t))[28]) /
 ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (
13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0(
u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(
t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) 
+ 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13//12
)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t)
)[26] - 3.0(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (
1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + 
(13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] -
 2(u(t))[26] - 3.0(u(t))[28])^2))^2)) + (-0.6766666666666667 / (1 + t) + 0.
9666666666666667 / (1 + t) + 0.6766666666666667(u(t))[25] + 6.7666666666666
675(u(t))[27] - 3.3833333333333337(u(t))[26] - 1.4500000000000002(u(t))[28]
) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) 
+ (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2
.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - 
(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + 
t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13/
/12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u
(t))[26] - 3.0(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 
/ (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2)
 + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27
] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2)))*(u(t))[28]])), Any[(u(t))[3], (u(
t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], 
(u(t))[11], (u(t))[12]  …  Differential(t)((u(t))[19]), Differential(t)((u(
t))[20]), Differential(t)((u(t))[21]), Differential(t)((u(t))[22]), Differe
ntial(t)((u(t))[23]), Differential(t)((u(t))[24]), Differential(t)((u(t))[2
5]), Differential(t)((u(t))[26]), Differential(t)((u(t))[27]), Differential
(t)((u(t))[28])], ModelingToolkit.SystemStructures.SystemStructure(Modeling
Toolkit.SystemStructures.DiffGraph(Union{Nothing, Int64}[27, 28, 29, 30, 31
, 32, 33, 34, 35, 36  …  nothing, nothing, nothing, nothing, nothing, nothi
ng, nothing, nothing, nothing, nothing], Union{Nothing, Int64}[nothing, not
hing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothin
g  …  17, 18, 19, 20, 21, 22, 23, 24, 25, 26]), ModelingToolkit.SystemStruc
tures.DiffGraph(Union{Nothing, Int64}[nothing, nothing, nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing  …  nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing, nothing, nothing], Uni
on{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, no
thing, nothing, nothing, nothing  …  nothing, nothing, nothing, nothing, no
thing, nothing, nothing, nothing, nothing, nothing]), BipartiteGraph with (
26, 52) (𝑠,𝑑)-vertices
   #  src                    dst
  1   [1, 2, 3, 4, 27]       [1, 2, 3]
  2   [1, 2, 3, 4, 28]       [1, 2, 3, 4]
  3   [1, 2, 3, 4, 5, 29]    [1, 2, 3, 4, 5]
  4   [2, 3, 4, 5, 6, 30]    [1, 2, 3, 4, 5, 6]
  5   [3, 4, 5, 6, 7, 31]    [3, 4, 5, 6, 7]
  6   [4, 5, 6, 7, 8, 32]    [4, 5, 6, 7, 8]
  7   [5, 6, 7, 8, 9, 33]    [5, 6, 7, 8, 9]
  8   [6, 7, 8, 9, 10, 34]   [6, 7, 8, 9, 10]
  9   [7, 8, 9, 10, 11, 35]  [7, 8, 9, 10, 11]
  ⋮                          
 44   ⋅                      [18]
 45   ⋅                      [19]
 46   ⋅                      [20]
 47   ⋅                      [21]
 48   ⋅                      [22]
 49   ⋅                      [23]
 50   ⋅                      [24]
 51   ⋅                      [25]
 52   ⋅                      [26], BipartiteGraph with (30, 56) (𝑠,𝑑)-verti
ces
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 48   ⋅    ∅
 49   ⋅    [30]
 50   ⋅    [30]
 51   ⋅    [30]
 52   ⋅    [30]
 53   ⋅    [27, 29]
 54   ⋅    [29]
 55   ⋅    [30]
 56   ⋅    [28, 30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equat
ion[(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[29] ~ 0.2(u(t))[30] + 2.0(u(t))[
28] + (u(t))[26] - 0.2(u(t))[25] - 2.0(u(t))[27], (u(t))[1] ~ 0.0, (u(t))[2
] ~ 0.2(u(t))[1] + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[4]],
 [Int64[], [1], Int64[], [3]], Symbolics.Equation[Differential(t)((u(t))[3]
) ~ ((1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.3 / ((1.0e-6 + (1
//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(
t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u
(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] 
- 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t
))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4
] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(
t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2)
)^2)) + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.38333
33333333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(
t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[
4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))
[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.
2(u(t))[6] - 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + 
(u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13/
/12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[5] - 0.58(u
(t))[6] - 8.7(u(t))[3] - 11.6(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u
(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[
4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(
u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t)
)[3] - 4(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] -
 (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t
))[4])^2))^2)) + (1.4500000000000002(u(t))[3] + 3.3833333333333337(u(t))[5]
 - 0.6766666666666667(u(t))[6] - 6.7666666666666675(u(t))[4]) / ((0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))[
5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2
(u(t))[6] - 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((0.4(u(t))[6]
 + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8
.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*((0.4(
u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t)
)[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2)) + (17.4(u(t))[3] +
 7.25(u(t))[5] - 1.4500000000000002(u(t))[6] - 14.5(u(t))[4]) / ((0.3 / ((1
.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])
^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))
^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) 
+ (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//1
2)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*((0.4(
u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t)
)[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2)) + (26.1(u(t))[3] +
 5.8(u(t))[5] - 1.16(u(t))[6] - 14.5(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12
)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((
0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2) + 0.6 / ((1
.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(
u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] 
+ (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t
))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 
3.0(u(t))[4])^2))^2)))*(u(t))[3], Differential(t)((u(t))[4]) ~ ((5.8(u(t))[
3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[5
] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t
))[6] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))
[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t)
)[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t
))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u
(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(
t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.
2(u(t))[6] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (
u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*((
(u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] -
 (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (
0.9666666666666667(u(t))[6] + 5.316666666666667(u(t))[4] - 3.38333333333333
37(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(
t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((
u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u
(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2
) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[6]
 - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] 
- 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))
[6] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5
])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[
4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t)
)[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^
2)) + (0.19333333333333336(u(t))[6] + 1.4500000000000004(u(t))[3] - 0.96666
66666666667(u(t))[5] - 3.3833333333333337(u(t))[4]) / ((0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u
(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) +
 (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5
] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2)) + (0.29(u(t))[6] + 4.35(u(t))[3] +
 5.8(u(t))[4] - 1.45(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] - 
0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6
] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])
^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4]
 + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(
t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.
0(u(t))[3])^2))^2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((3.3833333333
333337(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.316666666666667(u(t))[5])
 / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (1
3//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))
[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6
])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(
t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]
) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t
))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t)
)[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2)) + (0.9666666666666667(u(t))[7] + 5.316666666666667(u(t))[5]
 - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (
u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(
u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])
^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[5]
 + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] -
 (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*
(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 
4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4]
)^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[
4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5]
 + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[
4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)
*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] -
 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//1
2)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t
))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3]
 - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4]
 + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] +
 (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1/
/4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)))*(u(t))[5], Differential
(t)((u(t))[6]) ~ ((2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[
4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13/
/12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(
u(t))[5])^2))^2)) + (3.3833333333333337(u(t))[5] - 0.9666666666666667(u(t))
[4] - 5.316666666666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] 
+ (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*
(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5]
)^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.31666666
6666667(u(t))[6] + 0.9666666666666667(u(t))[8] - 3.3833333333333337(u(t))[7
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(
t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t
))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[
7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + 
(1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (
u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))
[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) 
+ (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u
(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t)
)[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 
+ (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t)
)[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*((
(u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(
u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t
))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6
 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 
2(u(t))[6])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))
^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (
13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2
))^2)))*(u(t))[6], Differential(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[
6] - 0.9666666666666667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((0.6 / ((
1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))
[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9]
 - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4
)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(
t))[6])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t
))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))
[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(
u(t))[6])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(
t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t)
)[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13
//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))
^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u
(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t)
)[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t
))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u
(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2
))^2)) + (0.9666666666666667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.3833
333333333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-
6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7]
 + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + 
(u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[6] - 14.5(u
(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2)))*(u(t))[7], Differential(t)((u(t))[8]
) ~ ((7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u
(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t)
)[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t
))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u
(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2
))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6
 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8]
 + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] +
 (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(
((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8
] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t)
)[9])^2))^2)) + (3.3833333333333337(u(t))[7] - 0.9666666666666667(u(t))[6] 
- 5.316666666666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (
u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])
^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2)
 + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(
u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^
2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[7]
 - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[
9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] -
 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//1
2)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t
))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10
] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] +
 (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.3
16666666666667(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] +
 (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u
(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((
u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[
9])^2))^2)))*(u(t))[8], Differential(t)((u(t))[9]) ~ ((2.9(u(t))[9] + 7.25(
u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))
[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + 
(1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(
u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^
2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (1.45(u(t))[1
1] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[
9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(
t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t)
)[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t)
)[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 
2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) +
 (3.3833333333333337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.31666666666
6667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u
(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(
((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//1
2)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t
))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7]
 - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1/
/4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t
))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9
] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] -
 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//1
2)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t
))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (5.316666666666667(u(t))[9] + 0.
9666666666666667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] 
+ (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))
[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//
12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] -
 4(u(t))[10])^2))^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((5.8(u(t))
[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u
(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u
(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[1
1])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (7.25(u
(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u
(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 
4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 
2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9
] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(
t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2
))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e
-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[
10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] 
- (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (
1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t)
)[12] - 4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[9] - 0.96666666666
66667(u(t))[8] - 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)
*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[
8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])
^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0
e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t
))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[
9])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1
.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t
))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) 
+ (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4
)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t)
)[10])^2))^2)) + (0.9666666666666667(u(t))[12] + 5.316666666666667(u(t))[10
] - 3.3833333333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))
[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))
[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(
t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12
] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^
2)))*(u(t))[10], Differential(t)((u(t))[11]) ~ ((2.9(u(t))[11] + 7.25(u(t))
[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12]
)^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u
(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] 
- 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (3.3
833333333333337(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.316666666666667
(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t)
)[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (
u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (
u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[
12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2)
 + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10]
 - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9
] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t
))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (1
3//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] 
+ (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))
[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.8
(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[
11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[
12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3
(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10
] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^
2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11
] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] 
- (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)
 + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (
13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*
((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t
))[13] - 2(u(t))[12])^2))^2)) + (5.316666666666667(u(t))[11] + 0.9666666666
666667(u(t))[13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(
t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(
t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)
*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] 
- 2(u(t))[12])^2))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ ((5.31666
6666666667(u(t))[12] + 0.9666666666666667(u(t))[14] - 3.3833333333333337(u(
t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//1
2)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u
(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (
u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[1
3])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2)
 + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (2.9(u(t))[12
] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[1
1] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2)
 + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6
 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[
12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[
11])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (
u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[
11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))
[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-
6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))
[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] 
- 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) 
+ (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[
12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))
[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4
(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//
12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (3.3833333333333337(
u(t))[11] - 0.9666666666666667(u(t))[10] - 5.316666666666667(u(t))[12]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[
11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))
[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4
(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 
2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((
3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t
))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[1
3])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3
(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[
14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) 
+ (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  … 
 Differential(t)((u(t))[19]) ~ ((2.9(u(t))[19] + 7.25(u(t))[18] - 1.45(u(t)
)[17]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18
])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u
(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) +
 (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2)) + (1.45(u(t))[21]
 - 2.9(u(t))[19] - 7.25(u(t))[20]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1
7] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u
(t))[18])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + 
(13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19
] + (u(t))[21] - 4(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[19] + (u
(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20
])^2))^2)) + (3.3833333333333337(u(t))[18] - 0.9666666666666667(u(t))[17] -
 5.316666666666667(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + 
(u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[
18])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//
12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (
u(t))[21] - 4(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[
19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2)
)^2)) + (5.8(u(t))[18] + 14.5(u(t))[19] - 2.9(u(t))[20]) / ((0.3 / ((1.0e-6
 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[
19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))
[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4
(u(t))[20])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) 
+ (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u
(t))[19])^2))^2)) + (2.9(u(t))[18] - 5.8(u(t))[20] - 14.5(u(t))[19]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4
)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(
t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u
(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2))*((1
.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t
))[20] - 2(u(t))[19])^2))^2)) + (0.9666666666666667(u(t))[21] + 5.316666666
666667(u(t))[19] - 3.3833333333333337(u(t))[20]) / ((0.3 / ((1.0e-6 + (13//
12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u
(t))[17] - 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[19] + (
u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[2
0])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//1
2)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21
] - 4(u(t))[20])^2))^2)))*(u(t))[19], Differential(t)((u(t))[20]) ~ ((1.45(
u(t))[22] - 2.9(u(t))[20] - 7.25(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[2
0])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[2
1])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3
(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[
20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2
(u(t))[21])^2))^2)) + (2.9(u(t))[20] + 7.25(u(t))[19] - 1.45(u(t))[18]) / (
(0.3 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1
//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2
(u(t))[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4
(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((
3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2)) + (5.316666666666667(u(t))[
20] + 0.9666666666666667(u(t))[22] - 3.3833333333333337(u(t))[21]) / ((0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*
((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t)
)[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t)
)[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2))*((1.0
e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t
))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (3.3833333333333337(u(t))[19] 
- 0.9666666666666667(u(t))[18] - 5.316666666666667(u(t))[20]) / ((0.6 / ((1
.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t
))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t
))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19
])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20
] + (u(t))[18] - 4(u(t))[19])^2))^2)) + (2.9(u(t))[19] - 5.8(u(t))[21] - 14
.5(u(t))[20]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (
13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20]
 + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18
] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(
t))[19])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)
*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (5.8(u(t))[19] + 14.5(u
(t))[20] - 2.9(u(t))[21]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t
))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*
(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t)
)[22] - 2(u(t))[21])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2
) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)))*(u(t))[20], 
Differential(t)((u(t))[21]) ~ ((1.45(u(t))[23] - 2.9(u(t))[21] - 7.25(u(t))
[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*
(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t)
)[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t
))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + 
(1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2)) + (5.3166666666666
67(u(t))[21] + 0.9666666666666667(u(t))[23] - 3.3833333333333337(u(t))[22])
 / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) 
+ (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22]
 - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19]
 - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4
)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2)) + (3.3833333333333337(u
(t))[20] - 0.9666666666666667(u(t))[19] - 5.316666666666667(u(t))[21]) / ((
0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[2
0] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[2
1] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(
u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2
(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*((
(u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (7.25(u(t))[20] + 2.9(u(t)
)[21] - 1.45(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))
[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*((
(u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[
21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4
(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) 
+ (5.8(u(t))[20] + 14.5(u(t))[21] - 2.9(u(t))[22]) / ((0.1 / ((1.0e-6 + (13
//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + 
(u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (
u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13/
/12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[2
1])^2))^2)) + (2.9(u(t))[20] - 14.5(u(t))[21] - 5.8(u(t))[22]) / ((0.6 / ((
1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(
t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(
t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22]
 - 2(u(t))[21])^2))^2)))*(u(t))[21], Differential(t)((u(t))[22]) ~ ((3.3833
333333333337(u(t))[21] - 0.9666666666666667(u(t))[20] - 5.316666666666667(u
(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[
21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (
u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (
u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[
23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2)
 + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (5.8(u(t))[2
1] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2
(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) 
+ (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[
22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u
(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + 
(2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u
(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(
t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//1
2)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22]
)^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u
(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23]
)^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20
] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] - 7
.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u
(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21
] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22
] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u
(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23
])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (0.9666
666666666667(u(t))[24] + 5.316666666666667(u(t))[22] - 3.3833333333333337(u
(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[
21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (
u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (
u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[
23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2)
 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], D
ifferential(t)((u(t))[23]) ~ ((3.3833333333333337(u(t))[22] - 0.96666666666
66667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)
*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] 
- 4(u(t))[22])^2))^2)) + (5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) /
 ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t)
)[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] -
 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] -
 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] +
 (u(t))[24] - 2(u(t))[23])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.8(
u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13/
/12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13
//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + 
(u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + 
(u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))
[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*((
(u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.316666666666667(u(t))[2
3] + 0.9666666666666667(u(t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + 
(u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] +
 (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))
[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))
[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e
-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t)
)[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22]
 - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2
) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t)
)[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] -
 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (1.
45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)
*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] 
- 2(u(t))[24])^2))^2)))*(u(t))[23], Differential(t)((u(t))[24]) ~ ((1.45(u(
t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(
t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25
])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u
(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2
4] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u
(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / ((0
.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//
4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (
u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u
(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(
u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t))
[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2)
 + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25
] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + 
(13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (3.383333333333
3337(u(t))[23] - 0.9666666666666667(u(t))[22] - 5.316666666666667(u(t))[24]
) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u
(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26
] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//
4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (2.9(u(t))[23] - 14.
5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(
t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4
)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//
12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u
(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25]
)^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (0.96666
66666666667(u(t))[26] + 5.316666666666667(u(t))[24] - 3.3833333333333337(u(
t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[
25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / (
(1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3
(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[2
4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2)
 + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)))*(u(t))[24], Di
fferential(t)((u(t))[25]) ~ ((7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[2
3]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2
) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e
-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t)
)[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13
//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.316666666666667
(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.3833333333333337(u(t))[26]) /
 ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (
13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25]
 + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] 
- (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*
((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (1.45(u(t))[27] - 2.9(u
(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t
))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)
*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12
)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t
))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27]
 - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2
)) + (3.3833333333333337(u(t))[24] - 0.9666666666666667(u(t))[23] - 5.31666
6666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23
] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27
] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u
(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + 
(5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u
(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[2
6])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25]
)^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.
0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(
t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])
^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] -
 2(u(t))[25])^2))^2)))*(u(t))[25], Differential(t)((u(t))[26]) ~ ((2.9(u(t)
)[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24]
 - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28
] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(
t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24
] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(
t))[25])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)
*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(
t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t
))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.
0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))
[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25]
)^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(
t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + 
(1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.3166666666666
67(u(t))[26] + 0.9666666666666667(u(t))[28] - 3.3833333333333337(u(t))[27])
 / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) 
+ (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[2
6] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25
] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4
)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (3.3833333333333337(u
(t))[25] - 0.9666666666666667(u(t))[24] - 5.316666666666667(u(t))[26]) / ((
0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1/
/4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + 
(u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (
u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*(
(1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3
(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t)
)[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[
26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2)
)^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[2
7] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) +
 (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)))*(u(t))[26], Dif
ferential(t)((u(t))[27]) ~ ((7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25
]) / ((0.1 / ((1.0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[2
5] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.
2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27]
 + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(
t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (
13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*
((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))
[28]) / ((0.1 / ((1.0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t)
)[25] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] -
 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2
(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) 
+ (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u
(t))[27])^2))^2)) + (3.3833333333333337(u(t))[26] - 0.9666666666666667(u(t)
)[25] - 5.316666666666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*((0.2 / 
(1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2 / (1 +
 t) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12
)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t
))[27])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])
^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t)
)[26] - 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*((0.2
 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2 / (
1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13/
/12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(
u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (0.19333333333333336 
/ (1 + t) + 0.9666666666666667(u(t))[26] + 3.3833333333333337(u(t))[27] - 0
.19333333333333336(u(t))[25] - 1.4500000000000004(u(t))[28]) / ((0.1 / ((1.
0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^
2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0
(u(t))[28])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4
(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[
26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*((0.2 / (1 + t)
 + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (
u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2)) + (0.29 / (
1 + t) + 1.45(u(t))[26] - 0.29(u(t))[25] - 4.35(u(t))[28] - 5.8(u(t))[27]) 
/ ((0.3 / ((1.0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] 
- (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u
(t))[25] - 2.0(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + 
(u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))
[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(
(0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2
 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2
)))*(u(t))[27], Differential(t)((u(t))[28]) ~ ((2.9(u(t))[28] + 7.25(u(t))[
27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26
] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[
27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t))[26
] - 0.2(u(t))[25] - (u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((-0.8 / (
1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(
u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] +
 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[
28] - 2(u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[27] - 0.966666666666
6667(u(t))[26] - 5.316666666666667(u(t))[28]) / ((0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t)
)[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.
2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0
.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[
27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (
1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12
)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (-1.16 / (1 + t) + 1.1
6(u(t))[25] + 14.5(u(t))[27] - 5.8(u(t))[26] - 26.1(u(t))[28]) / ((0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((
u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0
.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^
2) + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2)
)^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))
[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / 
(1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0
(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.
0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (
u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2)) + (-0.58 / (1 + t) + 0.58(u
(t))[25] + 8.7(u(t))[28] + 11.6(u(t))[27] - 2.9(u(t))[26]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t)
)[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 /
 (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) +
 (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25]
 + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 +
 t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t
))[28])^2))^2))*((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(
t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t)
)[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2)) + (1.45 / (1 + t) + -1.45000000
00000002 / (1 + t) + 1.4500000000000002(u(t))[25] + 14.5(u(t))[27] - 7.25(u
(t))[26] - 17.4(u(t))[28]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t
))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u
(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t
))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.
8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26] -
 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t))[
25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2))*((1.0e-6 + (1//4
)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t)
)[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4
(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2)) + (-0.676
6666666666667 / (1 + t) + 0.9666666666666667 / (1 + t) + 0.6766666666666667
(u(t))[25] + 6.7666666666666675(u(t))[27] - 3.3833333333333337(u(t))[26] - 
1.4500000000000002(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (
u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[
27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.
0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (
u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26
] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t
))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2))*((1.0e-6 + (1
//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u
(t))[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 
0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2)))*(u(t)
)[28]])), Dict{Any, Any}()), nothing, ModelingToolkit.ODESystem(Symbolics.E
quation[Differential(t)((u(t))[3]) ~ ((3.3833333333333337(u(t))[2] - 0.9666
666666666667(u(t))[1] - 5.316666666666667(u(t))[3]) / ((0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(
t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[
4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))
[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(
t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))
^2)) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (
13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u
(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))
[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t
))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (1.45(
u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u
(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(
u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (1
3//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u
(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9
(u(t))[3] + 7.25(u(t))[2] - 1.45(u(t))[1]) / ((0.3 / ((1.0e-6 + (13//12)*((
(u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 
4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + 
(13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(
t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 
2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2)) + (5
.316666666666667(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.383333333333333
7(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))
[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4
] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] -
 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((
1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t
))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[2] - 14.5(u(t))[3] - 5
.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t)
)[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[
4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] 
- 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*(
(1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t)
)[4] - 2(u(t))[3])^2))^2)))*(u(t))[3], Differential(t)((u(t))[4]) ~ ((7.25(
u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + (13//12)*(((u
(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(
u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (1
3//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t)
)[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(
u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (5.8
(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((
u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4
(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (3.38333333333333
37(u(t))[3] - 0.9666666666666667(u(t))[2] - 5.316666666666667(u(t))[4]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4
)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])
^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2)
 + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//1
2)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[
2] - 4(u(t))[3])^2))^2)) + (0.9666666666666667(u(t))[6] + 5.316666666666667
(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u
(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(
u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (1
3//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t)
)[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u
(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9
(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((
u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4
(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[6] - 
2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (
u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u
(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2)
 + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[4], Diffe
rential(t)((u(t))[5]) ~ ((0.9666666666666667(u(t))[7] + 5.316666666666667(u
(t))[5] - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))
[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)
 + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13/
/12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[
7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(
t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (3.383
3333333333337(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.316666666666667(u(
t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 
2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(
u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e
-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3
] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u
(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)
*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] -
 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2
(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6]
 - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4]
 + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + 
(u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])
^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2
) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)
*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[
5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) /
 ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13/
/12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])
^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t)
)[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) 
/ ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13
//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6]
)^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1/
/4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t)
)[5])^2))^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~ ((3.3833333333333337
(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.316666666666667(u(t))[6]) / ((0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)
*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) +
 (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6]
 - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12
)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^
2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) 
+ (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6]
)^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4
] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - 
(u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(
((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6]
 + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[
7])^2))^2)) + (5.316666666666667(u(t))[6] + 0.9666666666666667(u(t))[8] - 3
.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t)
)[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t
))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t)
)[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) +
 (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[6] + 7
.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(
t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u
(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(
t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2)
 + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t))[5] +
 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u
(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((
u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u
(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], Differential(t)((u
(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.9666666666666667(u(t))[5] - 5.
316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[
8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[
6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + 
(1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (0.9666666666666667
(u(t))[9] + 5.316666666666667(u(t))[7] - 3.3833333333333337(u(t))[8]) / ((0
.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (
u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2
))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) +
 (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9]
 - 2(u(t))[8])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6]
 + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] +
 (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])
^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2)
 + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//1
2)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[
5] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6
] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] +
 (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^
2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4
)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[
7])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8]
 - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6]
 - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) +
 (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^
2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6
 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] 
+ (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9
] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))
)*(u(t))[7], Differential(t)((u(t))[8]) ~ ((3.3833333333333337(u(t))[7] - 0
.9666666666666667(u(t))[6] - 5.316666666666667(u(t))[8]) / ((0.3 / ((1.0e-6
 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8]
 + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] +
 (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(
((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8]
 + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[
7])^2))^2)) + (7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.
0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t)
)[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7
] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//1
2)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(
t))[7])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.316666666666667(u(t))[8
] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[
9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)
*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))
[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (1.45(u(
t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(
t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4
(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(
t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t
))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 
2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (
2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*
(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10
] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] -
 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7
] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))
[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12
)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((
3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] 
- 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))[8], Differential(
t)((u(t))[9]) ~ ((5.316666666666667(u(t))[9] + 0.9666666666666667(u(t))[11]
 - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] +
 (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10]
)^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[1
0] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u
(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (1
.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))
[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[
7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))
[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10]
)^2))^2)) + (3.3833333333333337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.
316666666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t)
)[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2
))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) +
 (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(
u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^
2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[8]
 - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9]
 + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t)
)[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[
8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[
10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + 
(13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[9] + 7
.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u
(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2
) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] 
- 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[
8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t)
)[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t
))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t)
)[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(
t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2
) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)))*(u(t))[9], Dif
ferential(t)((u(t))[10]) ~ ((7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8])
 / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + 
(1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] +
 (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (
u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(
t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (5.8(u(t))[9] + 14.5(u(t))[10] 
- 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2
(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1
 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)
*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))
[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[9]
 - 0.9666666666666667(u(t))[8] - 5.316666666666667(u(t))[10]) / ((0.1 / ((1
.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t
))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) 
+ (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t
))[8] - 4(u(t))[9])^2))^2)) + (0.9666666666666667(u(t))[12] + 5.31666666666
6667(u(t))[10] - 3.3833333333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12
)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))
[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[
12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u
(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10
] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(
t))[11])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((
3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])
^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11]
)^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2
(u(t))[10])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//
4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))
[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e
-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t)
)[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Differential(t)((u(t
))[11]) ~ ((3.3833333333333337(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.
316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t
))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((
3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))
[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 
2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) +
 (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13
//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (
u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(
t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//1
2)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u
(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13
] - 2(u(t))[12])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(
t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13]
 - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11]
 - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.316666666666667(u(t))[11] + 0.96666
66666666667(u(t))[13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] -
 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] -
 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)
 + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (
1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((
3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))
[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t))[
9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*((
(u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[
13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[
11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4
)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u
(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t
))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((
3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))
[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2)
 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)))*(u(t))[11], D
ifferential(t)((u(t))[12]) ~ ((5.316666666666667(u(t))[12] + 0.966666666666
6667(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t)
)[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t
))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*
((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] 
- 4(u(t))[13])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) 
/ ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t
))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(
t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] 
- 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14]
 - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)
*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(
u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t)
)[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*
((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12
)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t
))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^
2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))
[12] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])
^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0
e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t
))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10]
 + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t
))[11])^2))^2)) + (3.3833333333333337(u(t))[11] - 0.9666666666666667(u(t))[
10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11]
 - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) +
 (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12
] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u
(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11
])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1
.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t
))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13
])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 +
 (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] 
- 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Differential(t)((u(t))[19]) ~ ((3.38
33333333333337(u(t))[18] - 0.9666666666666667(u(t))[17] - 5.316666666666667
(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t
))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] +
 (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[19] 
+ (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t)
)[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])
^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2)) + (5.8(u(t))
[18] + 14.5(u(t))[19] - 2.9(u(t))[20]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t
))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] -
 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] 
- 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t)
)[18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[18] - 
(u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2)) 
+ (0.9666666666666667(u(t))[21] + 5.316666666666667(u(t))[19] - 3.383333333
3333337(u(t))[20]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] 
- 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + 
(1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] -
 2(u(t))[19])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t
))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2)) + (2.
9(u(t))[19] + 7.25(u(t))[18] - 1.45(u(t))[17]) / ((0.3 / ((1.0e-6 + (13//12
)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t
))[17] - 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(
t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)
*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] 
- 4(u(t))[18])^2))^2)) + (2.9(u(t))[18] - 5.8(u(t))[20] - 14.5(u(t))[19]) /
 ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + 
(1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] -
 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] 
- 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] +
 (u(t))[20] - 2(u(t))[19])^2))^2)) + (1.45(u(t))[21] - 2.9(u(t))[19] - 7.25
(u(t))[20]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t
))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] +
 (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[19] 
+ (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t)
)[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])
^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2)))*(u(t))[19],
 Differential(t)((u(t))[20]) ~ ((3.3833333333333337(u(t))[19] - 0.966666666
6666667(u(t))[18] - 5.316666666666667(u(t))[20]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(
t))[20])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(
t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.
1 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4
)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18
] - 4(u(t))[19])^2))^2)) + (1.45(u(t))[22] - 2.9(u(t))[20] - 7.25(u(t))[21]
) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u
(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u
(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22
] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[2
0] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))
^2))*((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//
12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (5.316666666666667(u
(t))[20] + 0.9666666666666667(u(t))[22] - 3.3833333333333337(u(t))[21]) / (
(0.3 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1
//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2
(u(t))[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4
(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(
((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (5.8(u(t))[19] + 14.5(u(t
))[20] - 2.9(u(t))[21]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))
[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*((
(u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[
22] - 2(u(t))[21])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) 
+ (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (2.9(u(t))[20
] + 7.25(u(t))[19] - 1.45(u(t))[18]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))
[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4
(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) 
+ (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[
20] + (u(t))[22] - 2(u(t))[21])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[18] + 
(u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[
19])^2))^2)) + (2.9(u(t))[19] - 5.8(u(t))[21] - 14.5(u(t))[20]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u
(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u
(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[2
1])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[
19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2))*((1.0e-6
 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21
] - 2(u(t))[20])^2))^2)))*(u(t))[20], Differential(t)((u(t))[21]) ~ ((3.383
3333333333337(u(t))[20] - 0.9666666666666667(u(t))[19] - 5.316666666666667(
u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13/
/12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + 
(u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] +
 (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))
[22])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2
) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (1.45(u(t))
[23] - 2.9(u(t))[21] - 7.25(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))
[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2
))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2
) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t)
)[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] 
+ (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t)
)[22])^2))^2)) + (5.316666666666667(u(t))[21] + 0.9666666666666667(u(t))[23
] - 3.3833333333333337(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21
] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(
t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (
13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19]
 + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(
t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22]
)^2))^2)) + (7.25(u(t))[20] + 2.9(u(t))[21] - 1.45(u(t))[19]) / ((0.1 / ((1
.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u
(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21]
)^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20]
)^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19
] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (5.8(u(t))[20] + 14.5(u(t))[21] - 2
.9(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u
(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20]
 + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21]
 + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(
t))[20])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)
*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[20] - 14.5(u
(t))[21] - 5.8(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))
[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*
(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t)
)[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2
) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)))*(u(t))[21], 
Differential(t)((u(t))[22]) ~ ((5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u(t))[
23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^
2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))
[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))
[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))
[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] 
- 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 
4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))
[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))
[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (7.2
5(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t)
)[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))
[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*
(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] -
 2(u(t))[21])^2))^2)) + (3.3833333333333337(u(t))[21] - 0.9666666666666667(
u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22]
 - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])
^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(
t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22]
 + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(
t))[21])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / ((0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12
)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t
))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.
0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t)
)[23] - 2(u(t))[22])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.3166666666
66667(u(t))[22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(
t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t
))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12
)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24]
 - 2(u(t))[23])^2))^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~ ((1.45(u
(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u
(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23
])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((
u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[2
3] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(
u(t))[24])^2))^2)) + (5.316666666666667(u(t))[23] + 0.9666666666666667(u(t)
)[25] - 3.3833333333333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2)
)^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2
) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))
[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + 
(u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))
[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + 
(u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] +
 (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))
[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))
[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e
-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t)
)[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (3.3833333333333337(u(t))[22] -
 0.9666666666666667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t)
)[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t
))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])
^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])
^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23]
 + (u(t))[21] - 4(u(t))[22])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.
8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (1
3//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] 
+ (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] 
+ (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*
(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.8(u(t))[22] + 14.5(u(
t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[
24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((
3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))
[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2)
 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[23], D
ifferential(t)((u(t))[24]) ~ ((3.3833333333333337(u(t))[23] - 0.96666666666
66667(u(t))[22] - 5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t)
)[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t
))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*
((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] 
- 4(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.316666666666667(
u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((
u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26
] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u
(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2
4] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u
(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / ((0
.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//
4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (
u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u
(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(
u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t))
[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2)
 + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25
] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + 
(13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[26]
 - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23]
 - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2
) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) +
 (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24
] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u
(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25
])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1
.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t
))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(
t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23
])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 +
 (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] 
- 2(u(t))[24])^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ ((5.31666
6666666667(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.3833333333333337(u(
t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[2
4])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3
(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[2
5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2)
 + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (7.25(u(t))[2
4] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2
(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 
2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[
24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (
u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[
24])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(
((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[
25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))
[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-
6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))
[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t))[24] - 
0.9666666666666667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t
))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])
^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] 
+ (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5
(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t)
)[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] +
 (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] 
+ (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t)
)[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(
((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t
))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[
23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^
2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[
26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) 
+ (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[25], Di
fferential(t)((u(t))[26]) ~ ((3.3833333333333337(u(t))[25] - 0.966666666666
6667(u(t))[24] - 5.316666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)
*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t)
)[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t
))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*
(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] -
 4(u(t))[25])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))[27]) /
 ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + 
(1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26]
 + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] 
- (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*
((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.8(u(t))[25] + 14.5(u
(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t
))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])
^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27]
)^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2
) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[
26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t
))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] -
 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] 
- 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t)
)[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] 
+ (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t)
)[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*(
(3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t)
)[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))
[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e
-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[
27] - 2(u(t))[26])^2))^2)) + (5.316666666666667(u(t))[26] + 0.9666666666666
667(u(t))[28] - 3.3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)
*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t)
)[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t
))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*
(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] -
 4(u(t))[27])^2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ ((7.25(u(t
))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27]
 - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])
^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(
t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27]
 + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(
t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12
)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t
))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(
t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.
0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t)
)[28] - 2(u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[26] - 0.9666666666
666667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(
t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(
t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12
)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27]
 - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t))[27]) 
/ ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) +
 (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25
] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26]
 - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2
))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] 
+ (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[29] - 2.9(u(t))[27] - 7.2
5(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(
t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12
)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t
))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28]
)^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (0.966666
6666666667(u(t))[29] + 5.316666666666667(u(t))[27] - 3.3833333333333337(u(t
))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26
])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(
t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u
(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) 
+ (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)))*(u(t))[27], Dif
ferential(t)((u(t))[28]) ~ ((3.3833333333333337(u(t))[27] - 0.9666666666666
667(u(t))[26] - 5.316666666666667(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[
28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[
27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(
((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9(u(t))[29]) / (
(0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13
//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2
(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4
(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (
u(t))[29] - 2(u(t))[28])^2))^2)) + (2.9(u(t))[28] + 7.25(u(t))[27] - 1.45(u
(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[
27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (
u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (
u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[
29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2)
 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[
30] - 2.9(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2)
)^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2)
 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-
6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))
[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + 
(u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))
[29])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))[28]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (
u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (
u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[
27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[
29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-
6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[2
9] - 2(u(t))[28])^2))^2)) + (0.9666666666666667(u(t))[30] + 5.3166666666666
67(u(t))[28] - 3.3833333333333337(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((
3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))
[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[
29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(
((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 
2(u(t))[29])^2))^2)))*(u(t))[28]], t, SymbolicUtils.Term{Real, Nothing}[(u(
t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (
u(t))[10], (u(t))[11], (u(t))[12]  …  (u(t))[19], (u(t))[20], (u(t))[21], (
u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t
))[28]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t)
)[30] ~ -(-1.0 / (1 + t)), (u(t))[1] ~ 0.0, (u(t))[29] ~ 0.2(u(t))[30] + 2.
0(u(t))[28] + (u(t))[26] - 0.2(u(t))[25] - 2.0(u(t))[27], (u(t))[2] ~ 0.2(u
(t))[1] + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[4]], Base.Ref
Value{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Sy
mbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef,
 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 
0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0
, 0)), :pdesys1, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 
0.5517241379310345, (u(t))[18] => 0.5862068965517241, (u(t))[8] => 0.241379
3103448276, (u(t))[10] => 0.3103448275862069, (u(t))[27] => 0.8965517241379
31, (u(t))[28] => 0.9310344827586207, (u(t))[2] => 0.034482758620689655, (u
(t))[24] => 0.7931034482758621, (u(t))[30] => 1.0, (u(t))[21] => 0.68965517
24137931…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCa
llback[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[], Sym
bolics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLi
nes.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLine
s.CenterAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.Cente
rAlignedGrid, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDES
ystem, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodOf
Lines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}(MethodOfLines.Va
riableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType
, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, An
y}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{Symb
olicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicU
tils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicU
tils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils
.Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, 
SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{
SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symboli
cs.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5],
 (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(
t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))
[28], (u(t))[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.Immutable
Dict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, B
ase.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0), Di
ct{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen
{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64
}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.Im
mutableDict{DataType, Any}}, Float64}(x => 0.034482758620689655), Dict{Symb
olicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1
, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{Symb
olicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1
, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), MethodOf
Lines.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodOfLines.Sc
alarizedDiscretization}(Dict{Symbolics.Num, Int64}(x => 30), t, 2, MethodOf
Lines.WENOScheme(1.0e-6), MethodOfLines.CenterAlignedGrid(), true, false, M
ethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{
}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equatio
n[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symboli
cs.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + t)], Symbo
lics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolics.V
arDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x)],
 SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[], :pdesys1, no
thing), false, Base.RefValue{Any}(nothing)), ModelingToolkit.SystemStructur
es.TearingState{ModelingToolkit.ODESystem}(ModelingToolkit.ODESystem(Symbol
ics.Equation[Differential(t)((u(t))[3]) ~ ((3.3833333333333337(u(t))[2] - 0
.9666666666666667(u(t))[1] - 5.316666666666667(u(t))[3]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] 
+ (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u
(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((
u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] 
+ (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2]
)^2))^2)) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-
6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3]
 + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (
u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] -
 (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (
1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)
*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1]
 - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2)
 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + 
(u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] 
- 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) +
 (2.9(u(t))[3] + 7.25(u(t))[2] - 1.45(u(t))[1]) / ((0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[
1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^
2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] 
+ (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[
3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2))
 + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.3833333333
333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(
u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(
t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))
[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(
((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[2] - 14.5(u(t))[3
] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2
(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u
(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t)
)[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^
2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + 
(u(t))[4] - 2(u(t))[3])^2))^2)))*(u(t))[3], Differential(t)((u(t))[4]) ~ ((
7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + (13//12)
*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2]
 - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2)
 + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4]
 - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) +
 (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12
)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2
] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] +
 (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])
^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (3.383333333
3333337(u(t))[3] - 0.9666666666666667(u(t))[2] - 5.316666666666667(u(t))[4]
) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + 
(1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t)
)[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5
])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u
(t))[2] - 4(u(t))[3])^2))^2)) + (0.9666666666666667(u(t))[6] + 5.3166666666
66667(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)
*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2]
 - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2)
 + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] 
- 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) +
 (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12
)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2
] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] +
 (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])
^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[
6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[
3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] -
 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5
])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[4], 
Differential(t)((u(t))[5]) ~ ((0.9666666666666667(u(t))[7] + 5.316666666666
667(u(t))[5] - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u
(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (
3.3833333333333337(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.3166666666666
67(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))
[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[
6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7]
 - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(
t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 
2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13
//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))
[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7
] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3]
) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t
))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t)
)[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u
(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[
6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t)
)[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + 
(u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))
[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) 
+ (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u
(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t
))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2
(u(t))[5])^2))^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~ ((3.38333333333
33337(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.316666666666667(u(t))[6]) 
/ ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13
//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1/
/4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7])
 / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (1
3//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))
[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t
))[6])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//
12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u
(t))[7])^2))^2)) + (5.316666666666667(u(t))[6] + 0.9666666666666667(u(t))[8
] - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - 
(u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2
(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[6
] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] 
- (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)
*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5
])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t))
[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5]
 - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12
)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] 
- 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//
12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], Differential(
t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.9666666666666667(u(t))[5]
 - 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u
(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((
u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(
t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u
(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^
2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (0.96666666666
66667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.3833333333333337(u(t))[8]) 
/ ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[
6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1/
/4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t
))[9] - 2(u(t))[8])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]
) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t
))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t)
)[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8
])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u
(t))[5] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(
t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t
))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))
[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u
(t))[7])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t
))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))
[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^
2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(
t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))
[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t)
)[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(
t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2)
)^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ ((3.3833333333333337(u(t))[7
] - 0.9666666666666667(u(t))[6] - 5.316666666666667(u(t))[8]) / ((0.3 / ((1
.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t
))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t
))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u
(t))[7])^2))^2)) + (7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3
(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))
^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (
13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.316666666666667(u(
t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u
(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13
//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))
[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(
u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (1.
45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*
(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10
] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] -
 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[1
0] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)
) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t
))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))
[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t)
)[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(
t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t
))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(
u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (1
3//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t)
)[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + 
(13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))[8], Differen
tial(t)((u(t))[9]) ~ ((5.316666666666667(u(t))[9] + 0.9666666666666667(u(t)
)[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t
))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t)
)[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(
t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] 
- 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2))
 + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (
u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u
(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((
u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9]
 + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t)
)[10])^2))^2)) + (3.3833333333333337(u(t))[8] - 0.9666666666666667(u(t))[7]
 - 5.316666666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + 
(u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[1
0])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10]
 - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))
[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t
))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t
))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4
(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u
(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u
(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^
2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[9
] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9]
 + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[
8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[1
0])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))
[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u
(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8
(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2
(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[1
0])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)))*(u(t))[9]
, Differential(t)((u(t))[10]) ~ ((7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(t)
)[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6
 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[
10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9
] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*(
(3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (5.8(u(t))[9] + 14.5(u(t))
[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10
] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (
1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(
u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (3.3833333333333337(u(t
))[9] - 0.9666666666666667(u(t))[8] - 5.316666666666667(u(t))[10]) / ((0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((
3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])
^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11]
)^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] +
 (u(t))[8] - 4(u(t))[9])^2))^2)) + (0.9666666666666667(u(t))[12] + 5.316666
666666667(u(t))[10] - 3.3833333333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (
u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u
(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)
*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] -
 4(u(t))[11])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//
4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))
[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e
-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]
) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) +
 (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(
u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2
(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*(
(1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3
(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Differential(t)
((u(t))[11]) ~ ((3.3833333333333337(u(t))[10] - 0.9666666666666667(u(t))[9]
 - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[
10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//
12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (
u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[1
1] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^
2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11
] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] 
- (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)
 + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (
13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*
((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t
))[13] - 2(u(t))[12])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))
[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*
(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t)
)[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t)
)[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2
))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[
10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.316666666666667(u(t))[11] + 0.
9666666666666667(u(t))[13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e
-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[
12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[
13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2
) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (
u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u
(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//1
2)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u
(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + 
(1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 
5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[
10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//
12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (
u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12
])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)))*(u(t))[1
1], Differential(t)((u(t))[12]) ~ ((5.316666666666667(u(t))[12] + 0.9666666
666666667(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2
(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 
2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1
//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))
[14] - 4(u(t))[13])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[
13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(
((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))
[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t)
)[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^
2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (
1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 
14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - 
(u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1
//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] +
 (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[
13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(
u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[
12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))
[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / 
((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((
3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 
4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[11] - 0.9666666666666667(u
(t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^
2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])
^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0
e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t
))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10]
 + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t
))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] +
 (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] 
+ (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t)
)[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t
))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))
[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Differential(t)((u(t))[19]) ~ (
(3.3833333333333337(u(t))[18] - 0.9666666666666667(u(t))[17] - 5.3166666666
66667(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 
2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[
18] + (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4
(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))
[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2)) + (5.8(
u(t))[18] + 14.5(u(t))[19] - 2.9(u(t))[20]) / ((0.3 / ((1.0e-6 + (13//12)*(
((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[
17] - 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))
[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*((
(u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[1
8] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))
^2)) + (0.9666666666666667(u(t))[21] + 5.316666666666667(u(t))[19] - 3.3833
333333333337(u(t))[20]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))
[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^
2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[
20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 
2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2)) 
+ (2.9(u(t))[19] + 7.25(u(t))[18] - 1.45(u(t))[17]) / ((0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] +
 (u(t))[17] - 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[19] 
+ (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t)
)[20])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13
//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))
[17] - 4(u(t))[18])^2))^2)) + (2.9(u(t))[18] - 5.8(u(t))[20] - 14.5(u(t))[1
9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^
2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[
20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))
[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2
))^2))*((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[
18] + (u(t))[20] - 2(u(t))[19])^2))^2)) + (1.45(u(t))[21] - 2.9(u(t))[19] -
 7.25(u(t))[20]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 
2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[
18] + (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4
(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))
[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2)))*(u(t))
[19], Differential(t)((u(t))[20]) ~ ((3.3833333333333337(u(t))[19] - 0.9666
666666666667(u(t))[18] - 5.316666666666667(u(t))[20]) / ((0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] -
 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] -
 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + 
(1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t
))[18] - 4(u(t))[19])^2))^2)) + (1.45(u(t))[22] - 2.9(u(t))[20] - 7.25(u(t)
)[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)
*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*
((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t
))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(
t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19]
)^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + 
(13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (5.316666666666
667(u(t))[20] + 0.9666666666666667(u(t))[22] - 3.3833333333333337(u(t))[21]
) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2)
 + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21
] - 2(u(t))[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22
] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))
^2))*((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//
12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (5.8(u(t))[19] + 14.
5(u(t))[20] - 2.9(u(t))[21]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[18] + (
u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[1
9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//1
2)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u
(t))[22] - 2(u(t))[21])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21]
)^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (2.9(u(t
))[20] + 7.25(u(t))[19] - 1.45(u(t))[18]) / ((0.3 / ((1.0e-6 + (13//12)*(((
u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18
] - 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21]
)^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u
(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1
8] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u
(t))[19])^2))^2)) + (2.9(u(t))[19] - 5.8(u(t))[21] - 14.5(u(t))[20]) / ((0.
6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19]
 + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[20]
 + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(
t))[21])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u
(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2))*((1
.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t
))[21] - 2(u(t))[20])^2))^2)))*(u(t))[20], Differential(t)((u(t))[21]) ~ ((
3.3833333333333337(u(t))[20] - 0.9666666666666667(u(t))[19] - 5.31666666666
6667(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) +
 (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[1
9] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(
u(t))[22])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[2
0])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (1.45(
u(t))[23] - 2.9(u(t))[21] - 7.25(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[2
1])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[2
0])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / (
(1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3
(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4
(u(t))[22])^2))^2)) + (5.316666666666667(u(t))[21] + 0.9666666666666667(u(t
))[23] - 3.3833333333333337(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t
))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] -
 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2
) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t)
)[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] 
+ (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t)
)[22])^2))^2)) + (7.25(u(t))[20] + 2.9(u(t))[21] - 1.45(u(t))[19]) / ((0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*
((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t)
)[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t)
)[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0
e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t
))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (5.8(u(t))[20] + 14.5(u(t))[21
] - 2.9(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] 
- 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t)
)[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] -
 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13
//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[20] - 1
4.5(u(t))[21] - 5.8(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (
u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13/
/12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + 
(u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[2
2])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)))*(u(t))[
21], Differential(t)((u(t))[22]) ~ ((5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u
(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[
21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (
u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (
u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[
23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((
u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))
[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[2
0] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((
u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(
u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) +
 (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + 
(u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (
u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13/
/12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[
22] - 2(u(t))[21])^2))^2)) + (3.3833333333333337(u(t))[21] - 0.966666666666
6667(u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t)
)[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))
[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*
(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] -
 2(u(t))[21])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / 
((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (1
3//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 
2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 
4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))
*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + 
(u(t))[23] - 2(u(t))[22])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.31666
6666666667(u(t))[22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] 
+ (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] -
 (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (1
3//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t)
)[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~ ((1
.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t
))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(
t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12
)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25]
 - 2(u(t))[24])^2))^2)) + (5.316666666666667(u(t))[23] + 0.9666666666666667
(u(t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u
(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((
u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[2
3] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(
u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((
0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[2
2] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(
u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(
u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*(
(1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3
(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (3.3833333333333337(u(t))[
22] - 0.9666666666666667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + 
(u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] +
 (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))
[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))
[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e
-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t)
)[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23]
 - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2)
 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))
[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 
2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13/
/12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.8(u(t))[22] + 14
.5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u
(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//
4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (
u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24
])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[2
3], Differential(t)((u(t))[24]) ~ ((3.3833333333333337(u(t))[23] - 0.966666
6666666667(u(t))[22] - 5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2
(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 
2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1
//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))
[22] - 4(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.31666666666
6667(u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12
)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t
))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(
t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)
*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] 
- 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) 
/ ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) +
 (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24
] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23]
 - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)
*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(
u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(
t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23
])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t
))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^
2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t)
)[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])
^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0
e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t
))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24]
 + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t
))[25])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] +
 (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] 
+ (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t)
)[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t
))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))
[25] - 2(u(t))[24])^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ ((5.
316666666666667(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.38333333333333
37(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(
t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.
1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4
)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(
t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26
])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (7.25(u(
t))[24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u
(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25
] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[2
7] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25
] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u
(t))[24])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//
12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u
(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(
u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(
u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t))[2
4] - 0.9666666666666667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(
((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[
25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))
[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-
6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))
[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] -
 14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4
(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[
24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4
(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//
12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (5.8(u(t))[24] + 14.
5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u
(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[2
4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[
26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u
(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26]
)^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[25
], Differential(t)((u(t))[26]) ~ ((3.3833333333333337(u(t))[25] - 0.9666666
666666667(u(t))[24] - 5.316666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13
//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + 
(u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] +
 (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))
[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13/
/12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[
24] - 4(u(t))[25])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))[2
7]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^
2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t)
)[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1
//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.8(u(t))[25] + 1
4.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] +
 (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))
[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t)
)[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + 
(u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[2
7])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u
(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(
((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[
24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))
[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*((
(u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4
(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((
0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1/
/4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + 
(u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (
u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*(
(1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u
(t))[27] - 2(u(t))[26])^2))^2)) + (5.316666666666667(u(t))[26] + 0.96666666
66666667(u(t))[28] - 3.3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13
//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + 
(u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] +
 (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))
[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13/
/12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[
28] - 4(u(t))[27])^2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ ((7.2
5(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))
[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*(
(3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] -
 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / 
((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (1
3//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] -
 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))
*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + 
(u(t))[28] - 2(u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[26] - 0.96666
66666666667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (
13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] 
+ (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] 
+ (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t
))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (1
3//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t))[
27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])
^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t
))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))
[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[29] - 2.9(u(t))[27] 
- 7.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] -
 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (1
3//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t)
)[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (0.9
666666666666667(u(t))[29] + 5.316666666666667(u(t))[27] - 3.383333333333333
7(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t
))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] 
+ (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27]
 + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t
))[28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28]
)^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)))*(u(t))[27]
, Differential(t)((u(t))[28]) ~ ((3.3833333333333337(u(t))[27] - 0.96666666
66666667(u(t))[26] - 5.316666666666667(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//
4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u
(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u
(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//
12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(
u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[2
8] - 2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9(u(t))[29]
) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) 
+ (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29
] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30
] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))
^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27
] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (2.9(u(t))[28] + 7.25(u(t))[27] - 1
.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u
(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27
] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28
] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u
(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27
])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u
(t))[30] - 2.9(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)*(((u
(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28
])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27
])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((
u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[2
8] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(
u(t))[29])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))[28]) / ((0
.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27
] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28
] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u
(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u
(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(
t))[29] - 2(u(t))[28])^2))^2)) + (0.9666666666666667(u(t))[30] + 5.31666666
6666667(u(t))[28] - 3.3833333333333337(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (
u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u
(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//
12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(
u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[3
0] - 2(u(t))[29])^2))^2)))*(u(t))[28]], t, SymbolicUtils.Term{Real, Nothing
}[(u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[
9], (u(t))[10], (u(t))[11], (u(t))[12]  …  (u(t))[19], (u(t))[20], (u(t))[2
1], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27],
 (u(t))[28]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[
(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[29] ~ 0.2(u(t))[30] + 2.0(u(t))[28] 
+ (u(t))[26] - 0.2(u(t))[25] - 2.0(u(t))[27], (u(t))[1] ~ 0.0, (u(t))[2] ~ 
0.2(u(t))[1] + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[4]], Bas
e.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matr
ix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(u
ndef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(un
def, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(und
ef, 0, 0)), :pdesys1, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17
] => 0.5517241379310345, (u(t))[18] => 0.5862068965517241, (u(t))[8] => 0.2
413793103448276, (u(t))[10] => 0.3103448275862069, (u(t))[27] => 0.89655172
4137931, (u(t))[28] => 0.9310344827586207, (u(t))[2] => 0.03448275862068965
5, (u(t))[24] => 0.7931034482758621, (u(t))[30] => 1.0, (u(t))[21] => 0.689
6551724137931…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinu
ousCallback[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[]
, Symbolics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], Metho
dOfLines.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodO
fLines.CenterAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.
CenterAlignedGrid, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit
.PDESystem, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(Met
hodOfLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}(MethodOfLin
es.VariableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{Dat
aType, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataTyp
e, Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict
{SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{Symb
olicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), Symb
olicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{Symbolic
Utils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{In
t64, SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), 
Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Sy
mbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t)
)[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21]
, (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (
u(t))[28], (u(t))[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.Immu
tableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float6
4}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0
), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRan
geLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, 
Int64}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Ba
se.ImmutableDict{DataType, Any}}, Float64}(x => 0.034482758620689655), Dict
{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndi
ces{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict
{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndi
ces{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), Met
hodOfLines.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodOfLin
es.ScalarizedDiscretization}(Dict{Symbolics.Num, Int64}(x => 30), t, 2, Met
hodOfLines.WENOScheme(1.0e-6), MethodOfLines.CenterAlignedGrid(), true, fal
se, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, T
uple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Eq
uation[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Sy
mbolics.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + t)], 
Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbol
ics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t,
 x)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[], :pdesys
1, nothing), false, Base.RefValue{Any}(nothing)), nothing, ModelingToolkit.
Substitutions(Symbolics.Equation[(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[29]
 ~ 0.2(u(t))[30] + 2.0(u(t))[28] + (u(t))[26] - 0.2(u(t))[25] - 2.0(u(t))[2
7], (u(t))[1] ~ 0.0, (u(t))[2] ~ 0.2(u(t))[1] + 2.0(u(t))[3] + (u(t))[5] - 
0.2(u(t))[6] - 2.0(u(t))[4]], [Int64[], [1], Int64[], [3]], Symbolics.Equat
ion[Differential(t)((u(t))[3]) ~ ((1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t)
)[4]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2)
 + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 +
 (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3
] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13/
/12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)
*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2))*((1.0e-
6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3]
 + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.316666666666667(u(t))[3] + 0.966666
6666666667(u(t))[5] - 3.3833333333333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13
//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4
)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2) + 0.6 /
 ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((
2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2) + 0.1 / ((1.
0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))
[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t
))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))
^2)) + (2.9(u(t))[5] - 0.58(u(t))[6] - 8.7(u(t))[3] - 11.6(u(t))[4]) / ((0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*
(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((
(u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5
] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((0.4(u
(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))
[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t)
)[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2)) + (1.4500000000000002(u(t))[3] 
+ 3.3833333333333337(u(t))[5] - 0.6766666666666667(u(t))[6] - 6.76666666666
66675(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(
t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / 
((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2
.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0
e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2
) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2
))*((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t
))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5
])^2))^2)) + (17.4(u(t))[3] + 7.25(u(t))[5] - 1.4500000000000002(u(t))[6] -
 14.5(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4]
 - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5
.0(u(t))[3] - 4(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))[5] - 
0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t)
)[6] - 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))
[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2
))*((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t
))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5
])^2))^2)) + (26.1(u(t))[3] + 5.8(u(t))[5] - 1.16(u(t))[6] - 14.5(u(t))[4])
 / ((0.3 / ((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3]
 - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4
(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - 
(u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t)
)[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4
])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] 
+ (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2)))*(u(t))[3], Differential
(t)((u(t))[4]) ~ ((5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / (
(1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u
(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2
(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(
t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-
6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] -
 2(u(t))[4])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)
*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5
] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] -
 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))
[5] - 2(u(t))[4])^2))^2)) + (0.9666666666666667(u(t))[6] + 5.31666666666666
7(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((
u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 
0.2(u(t))[6] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] -
 (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4
] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))
[5])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1
.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t
))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t)
)[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 
+ (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] +
 (u(t))[6] - 2(u(t))[5])^2))^2)) + (0.19333333333333336(u(t))[6] + 1.450000
0000000004(u(t))[3] - 0.9666666666666667(u(t))[5] - 3.3833333333333337(u(t)
)[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])
^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3
] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] +
 (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + 
(1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2)) + (0.
29(u(t))[6] + 4.35(u(t))[3] + 5.8(u(t))[4] - 1.45(u(t))[5]) / ((0.3 / ((1.0
e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))
[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t
))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[
5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + 
(u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2)))*(u(t))[4], Differential(t
)((u(t))[5]) ~ ((3.3833333333333337(u(t))[4] - 0.9666666666666667(u(t))[3] 
- 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u
(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u
(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(
t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2)
 + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] +
 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u
(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((
u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(
t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u
(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (0.9666666666666667(u(t))[7]
 + 5.316666666666667(u(t))[5] - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6
] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] -
 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0
.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*
((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t)
)[6])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((
1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))
[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3]
 - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4
)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(
t))[4])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(
t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//
4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2
)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(
t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[
6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))
[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(
t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))
^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~ ((2.9(u(t))[6] + 7.25(u(t))[5
] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) 
+ (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (
u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t
))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))
^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)
*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (3.3833333333333337(u(t))[
5] - 0.9666666666666667(u(t))[4] - 5.316666666666667(u(t))[6]) / ((0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t
))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5
] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//1
2)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2)) + (5.316666666666667(u(t))[6] + 0.9666666666666667(u(t))[8]
 - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (
u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*((
(u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(
u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^
2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[8
] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] 
+ (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*
(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[
5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] 
- (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)
*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//1
2)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t
))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] 
- 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (
u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], Differential(t)((u(t))[7]) 
~ ((3.3833333333333337(u(t))[6] - 0.9666666666666667(u(t))[5] - 5.316666666
666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + 
(13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1
//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(
t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t)
)[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((
3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7
] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) 
+ (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (
u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t
))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*
((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))
[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2)
 + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + 
(u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(
t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2)
)^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] 
+ (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(
t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*
(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(
u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e
-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(t))[9] + 5.3166
66666666667(u(t))[7] - 3.3833333333333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t
))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))
[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.
0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t
))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))
^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(
t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))
[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t)
)[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t
))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)))*(u(t))[
7], Differential(t)((u(t))[8]) ~ ((7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t)
)[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u
(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e
-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6
] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25
(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))
[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7]
 - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*(
(1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u
(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (3.3833333333333337(u(t))[7] -
 0.9666666666666667(u(t))[6] - 5.316666666666667(u(t))[8]) / ((0.3 / ((1.0e
-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[
8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8]
 + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[
7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)
*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[
8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t)
)[7])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1
.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t
))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t
))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13
//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(
t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))
[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t
))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.966
6666666666667(u(t))[10] + 5.316666666666667(u(t))[8] - 3.3833333333333337(u
(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9
])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9]
 - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 
4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t
))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)))*(u(t))[8], Differential(t)((u(t))
[9]) ~ ((2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + 
(u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*
(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[
9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t)
)[8])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / 
((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3
(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) +
 (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))
[11] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[8] - 0.966666666666
6667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(
((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11
] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] 
- 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))
[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1
//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(
t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t)
)[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((
u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] -
 (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) +
 (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t)
)[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))
[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t)
)[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(
t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (5.
316666666666667(u(t))[9] + 0.9666666666666667(u(t))[11] - 3.383333333333333
7(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))
[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(
t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4
)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)))*(u(t))[9], Differential
(t)((u(t))[10]) ~ ((5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((
3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[1
2] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11]
)^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2
(u(t))[10])^2))^2)) + (7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0
.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)
*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)
*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t)
)[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[
11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10
] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.2
5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t
))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t
))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) +
 (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)) + (3.383333333333
3337(u(t))[9] - 0.9666666666666667(u(t))[8] - 5.316666666666667(u(t))[10]) 
/ ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (
1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(
t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u
(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t
))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 
14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(
u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (
u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[
11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u
(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (0.9666666666666667(u(t))[12]
 + 5.316666666666667(u(t))[10] - 3.3833333333333337(u(t))[11]) / ((0.3 / ((
1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(
t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] -
 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2)
 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (
u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Differential(t)((u(t))[11]) ~
 ((2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(
u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(
u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//
4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] 
- 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[10] - 0.9666666666666667
(u(t))[9] - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u
(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] -
 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2
) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t)
)[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[
10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / (
(1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(
u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11]
)^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12]
)^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 +
 (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) /
 ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t)
)[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] -
 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] -
 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (
u(t))[12] - 2(u(t))[11])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u
(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[
10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(
t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12
])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) +
 (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (5.31666666666
6667(u(t))[11] + 0.9666666666666667(u(t))[13] - 3.3833333333333337(u(t))[12
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((
u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[1
3] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[1
1] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//1
2)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[11], Differenti
al(t)((u(t))[12]) ~ ((5.316666666666667(u(t))[12] + 0.9666666666666667(u(t)
)[14] - 3.3833333333333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2)
)^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2
) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))
[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] +
 (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))
[13])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + 
(u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))
[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t)
)[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e
-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t)
)[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12]
 - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2
) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e
-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t)
)[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] -
 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t
))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.
8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(
((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))
[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*(
(3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2
))^2)) + (3.3833333333333337(u(t))[11] - 0.9666666666666667(u(t))[10] - 5.3
16666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))
[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*(
(3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t)
)[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)
) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 
2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] -
 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (
1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(
((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))
[12])^2))^2)))*(u(t))[12]  …  Differential(t)((u(t))[19]) ~ ((2.9(u(t))[19]
 + 7.25(u(t))[18] - 1.45(u(t))[17]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[
17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(
u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2
(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[1
8] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[17] + (
u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[1
8])^2))^2)) + (1.45(u(t))[21] - 2.9(u(t))[19] - 7.25(u(t))[20]) / ((0.1 / (
(1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3
(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[1
9])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[
20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[
19] + (u(t))[21] - 4(u(t))[20])^2))^2)) + (3.3833333333333337(u(t))[18] - 0
.9666666666666667(u(t))[17] - 5.316666666666667(u(t))[19]) / ((0.1 / ((1.0e
-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t)
)[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^
2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2))*((1.0e-6 + (1
3//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] +
 (u(t))[17] - 4(u(t))[18])^2))^2)) + (5.8(u(t))[18] + 14.5(u(t))[19] - 2.9(
u(t))[20]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t)
)[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*(
(3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))
[19])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*((
(u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2)) + (2.9(u(t))[18] - 5.8(u(t))
[20] - 14.5(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[
19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((
u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((
(u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[2
1] - 4(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) +
 (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2)) + (0.96666666666
66667(u(t))[21] + 5.316666666666667(u(t))[19] - 3.3833333333333337(u(t))[20
]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2
) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))
[19] + (u(t))[21] - 4(u(t))[20])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2)
)^2))*((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1/
/4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2)))*(u(t))[19], Differen
tial(t)((u(t))[20]) ~ ((1.45(u(t))[22] - 2.9(u(t))[20] - 7.25(u(t))[21]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))
[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 
2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] -
 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*
(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[20] + 7.25(u(
t))[19] - 1.45(u(t))[18]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t
))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*
(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t)
)[22] - 2(u(t))[21])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] 
- 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2)
) + (5.316666666666667(u(t))[20] + 0.9666666666666667(u(t))[22] - 3.3833333
333333337(u(t))[21]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20
] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(
t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22]
 - 2(u(t))[21])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(
t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (
3.3833333333333337(u(t))[19] - 0.9666666666666667(u(t))[18] - 5.31666666666
6667(u(t))[20]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) +
 (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[2
0] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[
18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(
u(t))[19])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[
19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2)) + (2.9(u
(t))[19] - 5.8(u(t))[21] - 14.5(u(t))[20]) / ((0.6 / ((1.0e-6 + (1//4)*(((u
(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21
])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(
u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[19
] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^
2)) + (5.8(u(t))[19] + 14.5(u(t))[20] - 2.9(u(t))[21]) / ((0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20
] + (u(t))[18] - 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19]
 - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + 
(13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2))*((1.0e-6 + (1//4)
*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t
))[20])^2))^2)))*(u(t))[20], Differential(t)((u(t))[21]) ~ ((1.45(u(t))[23]
 - 2.9(u(t))[21] - 7.25(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20]
 - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + 
(13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21
] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u
(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22
])^2))^2)) + (5.316666666666667(u(t))[21] + 0.9666666666666667(u(t))[23] - 
3.3833333333333337(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + 
(u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[
22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//
12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (
u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[
23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2)
)^2)) + (3.3833333333333337(u(t))[20] - 0.9666666666666667(u(t))[19] - 5.31
6666666666667(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[
22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(
((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))
[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 
4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))
 + (7.25(u(t))[20] + 2.9(u(t))[21] - 1.45(u(t))[19]) / ((0.1 / ((1.0e-6 + (
13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] 
+ (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] -
 (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (1
3//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t)
)[21] - 2(u(t))[20])^2))^2)) + (5.8(u(t))[20] + 14.5(u(t))[21] - 2.9(u(t))[
22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])
^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))
[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))
[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))
[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[20] - 14.5(u(t))[21] 
- 5.8(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) 
+ (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[
19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4
(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//
12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)))*(u(t))[21], Different
ial(t)((u(t))[22]) ~ ((3.3833333333333337(u(t))[21] - 0.9666666666666667(u(
t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] -
 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2
) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t)
)[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] +
 (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t)
)[21])^2))^2)) + (5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*
(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))
[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))
[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e
-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[
23] - 2(u(t))[22])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22
]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2)
 + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[2
3] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[2
4] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2)
)^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[2
1] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 
1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(
u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[2
1] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[2
2] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(
u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[2
1])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (1.45(
u(t))[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[
22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[2
3])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*((
(u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[
22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2
(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.316666666666667(u(t
))[22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] -
 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2
) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t)
)[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] +
 (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2))^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~ ((3.3833333333333
337(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.316666666666667(u(t))[23])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(
t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21]
 - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25]
 - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4
)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (5.8(u(t))[22] + 14.5
(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t
))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)
*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(
t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])
^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (2.9(u(t)
)[22] - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^
2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])
^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t
))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] -
 (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))
 + (5.316666666666667(u(t))[23] + 0.9666666666666667(u(t))[25] - 3.38333333
33333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^
2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0
e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t
))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] 
- 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t
))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2
.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t
))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(
t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12
)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21]
 - 4(u(t))[22])^2))^2)) + (1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(
t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21]
 - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25]
 - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//1
2)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t))[23], Differenti
al(t)((u(t))[24]) ~ ((1.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((
0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[2
3] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(
u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2
(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*(
(1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3
(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t)
)[24] - 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))
[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^
2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[
25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) 
+ (5.8(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13
//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + 
(u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] +
 (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))
[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13/
/12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[2
4])^2))^2)) + (3.3833333333333337(u(t))[23] - 0.9666666666666667(u(t))[22] 
- 5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (
u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1/
/4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13
//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + 
(u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))
[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2
))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-
6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[2
5] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[
26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2
) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1/
/4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(
u(t))[24])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.316666666666667(u(t)
)[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 
4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] -
 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))
[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] +
 (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))
[25])^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ ((7.25(u(t))[24] +
 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] 
+ (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(
t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] 
+ (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t)
)[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])
^2))^2)) + (5.316666666666667(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.
3833333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(
t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24
])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[2
6])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(
t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27
] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^
2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[2
3] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24
] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) 
+ (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u
(t))[27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t))[24] - 0.9666666
666666667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + 
(u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (
u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1/
/4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[
25] - 2(u(t))[24])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26
]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2)
 + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))
[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2)
)^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[2
4] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 1
4.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u
(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24
] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[2
5] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u
(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12
)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[25], Differentia
l(t)((u(t))[26]) ~ ((2.9(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0
.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//
4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (
u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u
(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(
u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))
[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))
^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2)
 + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27
] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + 
(13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[28]
 - 2.9(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
4] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u
(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(
u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25
] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u
(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27
])^2))^2)) + (5.316666666666667(u(t))[26] + 0.9666666666666667(u(t))[28] - 
3.3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + 
(u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[
25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))
[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[
28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2)
)^2)) + (3.3833333333333337(u(t))[25] - 0.9666666666666667(u(t))[24] - 5.31
6666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t)
)[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])
^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))
[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] -
 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2))
 + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] +
 (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] 
+ (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t)
)[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13
//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[
26])^2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ ((7.25(u(t))[26] + 
2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*((0.2 / (1 + 
t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) +
 (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((
u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27
])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) +
 (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26]
 + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0.1 / ((1.0e-6 + (13//12)*((0.2 / (1
 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t
) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*
(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))
[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*((
(u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[
26] - 0.9666666666666667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((0.3 /
 ((1.0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[
27])^2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] 
- 2.0(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25
] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u
(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27
] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u
(t))[26])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.
3 / ((1.0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t
))[27])^2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[2
5] - 2.0(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))
[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[
26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2)
)^2)) + (0.19333333333333336 / (1 + t) + 0.9666666666666667(u(t))[26] + 3.3
833333333333337(u(t))[27] - 0.19333333333333336(u(t))[25] - 1.4500000000000
004(u(t))[28]) / ((0.1 / ((1.0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] -
 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(
t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))
[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e
-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2)
 + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u
(t))[28])^2))^2)) + (0.29 / (1 + t) + 1.45(u(t))[26] - 0.29(u(t))[25] - 4.3
5(u(t))[28] - 5.8(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*((0.2 / (1 + t) 
+ (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (u
(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t
))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^
2))^2))*((1.0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - 
(u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u(t
))[25] - 2.0(u(t))[28])^2))^2)))*(u(t))[27], Differential(t)((u(t))[28]) ~ 
((2.9(u(t))[28] + 7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + 
(u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 / (1 + t)
 + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12
)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u
(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.
0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^
2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (1
3//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (3.38333333333333
37(u(t))[27] - 0.9666666666666667(u(t))[26] - 5.316666666666667(u(t))[28]) 
/ ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0
(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u
(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + t)
 + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13//1
2)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t
))[26] - 3.0(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26
] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))
^2)) + (-1.16 / (1 + t) + 1.16(u(t))[25] + 14.5(u(t))[27] - 5.8(u(t))[26] -
 26.1(u(t))[28]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4
(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] -
 (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0
.2(u(t))[25] - (u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.8 / (1 + t
) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))
[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(
u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((-0.2 /
 (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) +
 (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2)
) + (-0.58 / (1 + t) + 0.58(u(t))[25] + 8.7(u(t))[28] + 11.6(u(t))[27] - 2.
9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t
))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(
t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u
(t))[25] - (u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 
1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28]
)^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t)
)[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((-0.2 / (1 
+ t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13
//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2)) + 
(1.45 / (1 + t) + -1.4500000000000002 / (1 + t) + 1.4500000000000002(u(t))[
25] + 14.5(u(t))[27] - 7.25(u(t))[26] - 17.4(u(t))[28]) / ((0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[2
6] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 / (1
 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (1
3//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 
8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 + t)
 + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[
28])^2))^2))*((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))
[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / 
(1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0
(u(t))[28])^2))^2)) + (-0.6766666666666667 / (1 + t) + 0.9666666666666667 /
 (1 + t) + 0.6766666666666667(u(t))[25] + 6.7666666666666675(u(t))[27] - 3.
3833333333333337(u(t))[26] - 1.4500000000000002(u(t))[28]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t)
)[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 /
 (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) +
 (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25]
 + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 +
 t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t
))[28])^2))^2))*((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(
t))[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4
 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 
3.0(u(t))[28])^2))^2)))*(u(t))[28]])), Any[(u(t))[3], (u(t))[4], (u(t))[5],
 (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11], (u(t))
[12]  …  Differential(t)((u(t))[19]), Differential(t)((u(t))[20]), Differen
tial(t)((u(t))[21]), Differential(t)((u(t))[22]), Differential(t)((u(t))[23
]), Differential(t)((u(t))[24]), Differential(t)((u(t))[25]), Differential(
t)((u(t))[26]), Differential(t)((u(t))[27]), Differential(t)((u(t))[28])], 
ModelingToolkit.SystemStructures.SystemStructure(ModelingToolkit.SystemStru
ctures.DiffGraph(Union{Nothing, Int64}[27, 28, 29, 30, 31, 32, 33, 34, 35, 
36  …  nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothi
ng, nothing, nothing], Union{Nothing, Int64}[nothing, nothing, nothing, not
hing, nothing, nothing, nothing, nothing, nothing, nothing  …  17, 18, 19, 
20, 21, 22, 23, 24, 25, 26]), ModelingToolkit.SystemStructures.DiffGraph(Un
ion{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, n
othing, nothing, nothing, nothing  …  nothing, nothing, nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing], Union{Nothing, Int64}
[nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, no
thing, nothing  …  nothing, nothing, nothing, nothing, nothing, nothing, no
thing, nothing, nothing, nothing]), BipartiteGraph with (26, 52) (𝑠,𝑑)-vert
ices
   #  src                    dst
  1   [1, 2, 3, 4, 27]       [1, 2, 3]
  2   [1, 2, 3, 4, 28]       [1, 2, 3, 4]
  3   [1, 2, 3, 4, 5, 29]    [1, 2, 3, 4, 5]
  4   [2, 3, 4, 5, 6, 30]    [1, 2, 3, 4, 5, 6]
  5   [3, 4, 5, 6, 7, 31]    [3, 4, 5, 6, 7]
  6   [4, 5, 6, 7, 8, 32]    [4, 5, 6, 7, 8]
  7   [5, 6, 7, 8, 9, 33]    [5, 6, 7, 8, 9]
  8   [6, 7, 8, 9, 10, 34]   [6, 7, 8, 9, 10]
  9   [7, 8, 9, 10, 11, 35]  [7, 8, 9, 10, 11]
  ⋮                          
 44   ⋅                      [18]
 45   ⋅                      [19]
 46   ⋅                      [20]
 47   ⋅                      [21]
 48   ⋅                      [22]
 49   ⋅                      [23]
 50   ⋅                      [24]
 51   ⋅                      [25]
 52   ⋅                      [26], BipartiteGraph with (30, 56) (𝑠,𝑑)-verti
ces
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 48   ⋅    ∅
 49   ⋅    [30]
 50   ⋅    [30]
 51   ⋅    [30]
 52   ⋅    [30]
 53   ⋅    [27, 29]
 54   ⋅    [29]
 55   ⋅    [30]
 56   ⋅    [28, 30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equat
ion[(u(t))[30] ~ -(-1.0 / (1 + t)), (u(t))[29] ~ 0.2(u(t))[30] + 2.0(u(t))[
28] + (u(t))[26] - 0.2(u(t))[25] - 2.0(u(t))[27], (u(t))[1] ~ 0.0, (u(t))[2
] ~ 0.2(u(t))[1] + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[4]],
 [Int64[], [1], Int64[], [3]], Symbolics.Equation[Differential(t)((u(t))[3]
) ~ ((1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.3 / ((1.0e-6 + (1
//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(
t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u
(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] 
- 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t
))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4
] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(
t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2)
)^2)) + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.38333
33333333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(
t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[
4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))
[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.
2(u(t))[6] - 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + 
(u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13/
/12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[5] - 0.58(u
(t))[6] - 8.7(u(t))[3] - 11.6(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u
(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[
4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(
u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t)
)[3] - 4(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] -
 (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t
))[4])^2))^2)) + (1.4500000000000002(u(t))[3] + 3.3833333333333337(u(t))[5]
 - 0.6766666666666667(u(t))[6] - 6.7666666666666675(u(t))[4]) / ((0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))[
5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2
(u(t))[6] - 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((0.4(u(t))[6]
 + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t))[6] + 8
.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*((0.4(
u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t)
)[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2)) + (17.4(u(t))[3] +
 7.25(u(t))[5] - 1.4500000000000002(u(t))[6] - 14.5(u(t))[4]) / ((0.3 / ((1
.0e-6 + (13//12)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])
^2) + (1//4)*((0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))
^2) + 0.6 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) 
+ (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//1
2)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*((0.4(
u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((0.8(u(t)
)[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2)) + (26.1(u(t))[3] +
 5.8(u(t))[5] - 1.16(u(t))[6] - 14.5(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12
)*((0.4(u(t))[6] + 4.0(u(t))[4] - 3.0(u(t))[3] - 2(u(t))[5])^2) + (1//4)*((
0.8(u(t))[6] + 8.0(u(t))[4] - 5.0(u(t))[3] - 4(u(t))[5])^2))^2) + 0.6 / ((1
.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*((2.0(
u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 3.0(u(t))[4])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] 
+ (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t
))[6] - (u(t))[4])^2) + (1//4)*((2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 
3.0(u(t))[4])^2))^2)))*(u(t))[3], Differential(t)((u(t))[4]) ~ ((5.8(u(t))[
3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[5
] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t
))[6] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))
[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t)
)[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t
))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u
(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(
t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.
2(u(t))[6] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (
u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*((
(u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] -
 (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (
0.9666666666666667(u(t))[6] + 5.316666666666667(u(t))[4] - 3.38333333333333
37(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(
t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((
u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u
(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2
) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[6]
 - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] 
- 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))
[6] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5
])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[
4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t)
)[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^
2)) + (0.19333333333333336(u(t))[6] + 1.4500000000000004(u(t))[3] - 0.96666
66666666667(u(t))[5] - 3.3833333333333337(u(t))[4]) / ((0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u
(t))[5] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) +
 (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[5] - 0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5
] - 0.2(u(t))[6] - 2.0(u(t))[3])^2))^2)) + (0.29(u(t))[6] + 4.35(u(t))[3] +
 5.8(u(t))[4] - 1.45(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] - 
0.2(u(t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6
] - 2.0(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])
^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4]
 + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] - 0.2(u(
t))[6] - (u(t))[4])^2) + (1//4)*(((u(t))[4] + (u(t))[5] - 0.2(u(t))[6] - 2.
0(u(t))[3])^2))^2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((3.3833333333
333337(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.316666666666667(u(t))[5])
 / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (1
3//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))
[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6
])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(
t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]
) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t
))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t)
)[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2)) + (0.9666666666666667(u(t))[7] + 5.316666666666667(u(t))[5]
 - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (
u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(
u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])
^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[5]
 + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] -
 (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*
(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 
4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4]
)^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[
4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5]
 + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[
4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)
*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] -
 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//1
2)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t
))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3]
 - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4]
 + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] +
 (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1/
/4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)))*(u(t))[5], Differential
(t)((u(t))[6]) ~ ((2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[
4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13/
/12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(
u(t))[5])^2))^2)) + (3.3833333333333337(u(t))[5] - 0.9666666666666667(u(t))
[4] - 5.316666666666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] 
+ (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*
(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5]
)^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.31666666
6666667(u(t))[6] + 0.9666666666666667(u(t))[8] - 3.3833333333333337(u(t))[7
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(
t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t
))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[
7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + 
(1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (
u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))
[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) 
+ (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u
(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t)
)[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 
+ (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t)
)[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*((
(u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(
u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t
))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6
 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 
2(u(t))[6])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))
^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (
13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2
))^2)))*(u(t))[6], Differential(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[
6] - 0.9666666666666667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((0.6 / ((
1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))
[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9]
 - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4
)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(
t))[6])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t
))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))
[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(
u(t))[6])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(
t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t)
)[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13
//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))
^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u
(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t)
)[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t
))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u
(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2
))^2)) + (0.9666666666666667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.3833
333333333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-
6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7]
 + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + 
(u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[6] - 14.5(u
(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2)))*(u(t))[7], Differential(t)((u(t))[8]
) ~ ((7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u
(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t)
)[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t
))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u
(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2
))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6
 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8]
 + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] +
 (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(
((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8
] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t)
)[9])^2))^2)) + (3.3833333333333337(u(t))[7] - 0.9666666666666667(u(t))[6] 
- 5.316666666666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (
u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])
^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2)
 + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(
u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^
2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[7]
 - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[
9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] -
 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//1
2)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t
))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10
] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] +
 (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.3
16666666666667(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] +
 (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u
(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((
u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[
9])^2))^2)))*(u(t))[8], Differential(t)((u(t))[9]) ~ ((2.9(u(t))[9] + 7.25(
u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))
[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + 
(1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(
u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^
2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (1.45(u(t))[1
1] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[
9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(
t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t)
)[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t)
)[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 
2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) +
 (3.3833333333333337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.31666666666
6667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u
(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(
((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//1
2)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t
))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7]
 - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1/
/4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t
))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9
] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] -
 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//1
2)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t
))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (5.316666666666667(u(t))[9] + 0.
9666666666666667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] 
+ (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))
[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//
12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] -
 4(u(t))[10])^2))^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((5.8(u(t))
[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u
(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u
(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[1
1])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (7.25(u
(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u
(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 
4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 
2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9
] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(
t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2
))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e
-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[
10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] 
- (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (
1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t)
)[12] - 4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[9] - 0.96666666666
66667(u(t))[8] - 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)
*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[
8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])
^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0
e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t
))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[
9])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1
.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t
))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) 
+ (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4
)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t)
)[10])^2))^2)) + (0.9666666666666667(u(t))[12] + 5.316666666666667(u(t))[10
] - 3.3833333333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))
[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))
[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(
t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12
] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^
2)))*(u(t))[10], Differential(t)((u(t))[11]) ~ ((2.9(u(t))[11] + 7.25(u(t))
[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12]
)^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u
(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] 
- 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (3.3
833333333333337(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.316666666666667
(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t)
)[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (
u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (
u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[
12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2)
 + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10]
 - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9
] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t
))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (1
3//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] 
+ (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))
[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.8
(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[
11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[
12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3
(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10
] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^
2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11
] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] 
- (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)
 + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (
13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*
((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t
))[13] - 2(u(t))[12])^2))^2)) + (5.316666666666667(u(t))[11] + 0.9666666666
666667(u(t))[13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(
t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(
t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)
*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] 
- 2(u(t))[12])^2))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ ((5.31666
6666666667(u(t))[12] + 0.9666666666666667(u(t))[14] - 3.3833333333333337(u(
t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//1
2)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u
(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (
u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[1
3])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2)
 + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (2.9(u(t))[12
] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[1
1] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2)
 + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6
 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[
12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[
11])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (
u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[
11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))
[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-
6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))
[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] 
- 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) 
+ (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[
12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))
[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4
(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//
12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (3.3833333333333337(
u(t))[11] - 0.9666666666666667(u(t))[10] - 5.316666666666667(u(t))[12]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[
11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))
[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4
(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 
2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((
3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t
))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[1
3])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3
(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[
14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) 
+ (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  … 
 Differential(t)((u(t))[19]) ~ ((2.9(u(t))[19] + 7.25(u(t))[18] - 1.45(u(t)
)[17]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18
])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u
(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) +
 (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2)) + (1.45(u(t))[21]
 - 2.9(u(t))[19] - 7.25(u(t))[20]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1
7] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u
(t))[18])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + 
(13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19
] + (u(t))[21] - 4(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[19] + (u
(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20
])^2))^2)) + (3.3833333333333337(u(t))[18] - 0.9666666666666667(u(t))[17] -
 5.316666666666667(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[17] + 
(u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[
18])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//
12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (
u(t))[21] - 4(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[
19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2)
)^2)) + (5.8(u(t))[18] + 14.5(u(t))[19] - 2.9(u(t))[20]) / ((0.3 / ((1.0e-6
 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[
19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))
[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4
(u(t))[20])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) 
+ (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u
(t))[19])^2))^2)) + (2.9(u(t))[18] - 5.8(u(t))[20] - 14.5(u(t))[19]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4
)*((3(u(t))[19] + (u(t))[17] - 4(u(t))[18])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(
t))[19])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u
(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[20])^2))^2))*((1
.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//12)*(((u(t))[18] + (u(t
))[20] - 2(u(t))[19])^2))^2)) + (0.9666666666666667(u(t))[21] + 5.316666666
666667(u(t))[19] - 3.3833333333333337(u(t))[20]) / ((0.3 / ((1.0e-6 + (13//
12)*(((u(t))[17] + (u(t))[19] - 2(u(t))[18])^2) + (1//4)*((3(u(t))[19] + (u
(t))[17] - 4(u(t))[18])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[19] + (
u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21] - 4(u(t))[2
0])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[18] - (u(t))[20])^2) + (13//1
2)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[19] + (u(t))[21] - 2(u(t))[20])^2) + (1//4)*((3(u(t))[19] + (u(t))[21
] - 4(u(t))[20])^2))^2)))*(u(t))[19], Differential(t)((u(t))[20]) ~ ((1.45(
u(t))[22] - 2.9(u(t))[20] - 7.25(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[2
0])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[2
1])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3
(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[
20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2
(u(t))[21])^2))^2)) + (2.9(u(t))[20] + 7.25(u(t))[19] - 1.45(u(t))[18]) / (
(0.3 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1
//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2
(u(t))[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4
(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((
3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2)) + (5.316666666666667(u(t))[
20] + 0.9666666666666667(u(t))[22] - 3.3833333333333337(u(t))[21]) / ((0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*
((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t)
)[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t)
)[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2))*((1.0
e-6 + (1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t
))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (3.3833333333333337(u(t))[19] 
- 0.9666666666666667(u(t))[18] - 5.316666666666667(u(t))[20]) / ((0.6 / ((1
.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*(((u(t))[19] + (u(t
))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[20] + (u(t
))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19
])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[18] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20
] + (u(t))[18] - 4(u(t))[19])^2))^2)) + (2.9(u(t))[19] - 5.8(u(t))[21] - 14
.5(u(t))[20]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (
13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20]
 + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[18
] + (u(t))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(
t))[19])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)
*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (5.8(u(t))[19] + 14.5(u
(t))[20] - 2.9(u(t))[21]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[18] + (u(t
))[20] - 2(u(t))[19])^2) + (1//4)*((3(u(t))[20] + (u(t))[18] - 4(u(t))[19])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2) + (13//12)*
(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[20] + (u(t))[22] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t)
)[22] - 2(u(t))[21])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[19] - (u(t))[21])^2
) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)))*(u(t))[20], 
Differential(t)((u(t))[21]) ~ ((1.45(u(t))[23] - 2.9(u(t))[21] - 7.25(u(t))
[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*
(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t)
)[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t
))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + 
(1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2)) + (5.3166666666666
67(u(t))[21] + 0.9666666666666667(u(t))[23] - 3.3833333333333337(u(t))[22])
 / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) 
+ (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22]
 - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19]
 - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4
)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2)) + (3.3833333333333337(u
(t))[20] - 0.9666666666666667(u(t))[19] - 5.316666666666667(u(t))[21]) / ((
0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[2
0] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[2
1] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(
u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2
(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*((
(u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (7.25(u(t))[20] + 2.9(u(t)
)[21] - 1.45(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))
[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*((
(u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[
21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4
(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) 
+ (5.8(u(t))[20] + 14.5(u(t))[21] - 2.9(u(t))[22]) / ((0.1 / ((1.0e-6 + (13
//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + 
(u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (
u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13/
/12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[2
1])^2))^2)) + (2.9(u(t))[20] - 14.5(u(t))[21] - 5.8(u(t))[22]) / ((0.6 / ((
1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(
t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(
t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22]
 - 2(u(t))[21])^2))^2)))*(u(t))[21], Differential(t)((u(t))[22]) ~ ((3.3833
333333333337(u(t))[21] - 0.9666666666666667(u(t))[20] - 5.316666666666667(u
(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[
21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (
u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (
u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[
23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2)
 + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (5.8(u(t))[2
1] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2
(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) 
+ (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[
22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u
(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + 
(2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u
(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(
t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//1
2)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22]
)^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u
(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23]
)^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20
] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] - 7
.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u
(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21
] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22
] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u
(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23
])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (0.9666
666666666667(u(t))[24] + 5.316666666666667(u(t))[22] - 3.3833333333333337(u
(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[
21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (
u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (
u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[
23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2)
 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], D
ifferential(t)((u(t))[23]) ~ ((3.3833333333333337(u(t))[22] - 0.96666666666
66667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)
*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] 
- 4(u(t))[22])^2))^2)) + (5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) /
 ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t)
)[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] -
 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] -
 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] +
 (u(t))[24] - 2(u(t))[23])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.8(
u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13/
/12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13
//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + 
(u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + 
(u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))
[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*((
(u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.316666666666667(u(t))[2
3] + 0.9666666666666667(u(t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + 
(u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] +
 (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))
[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))
[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e
-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t)
)[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22]
 - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2
) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t)
)[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] -
 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (1.
45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)
*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] 
- 2(u(t))[24])^2))^2)))*(u(t))[23], Differential(t)((u(t))[24]) ~ ((1.45(u(
t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(
t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25
])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u
(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2
4] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u
(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / ((0
.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//
4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (
u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u
(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(
u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t))
[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2)
 + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25
] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + 
(13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (3.383333333333
3337(u(t))[23] - 0.9666666666666667(u(t))[22] - 5.316666666666667(u(t))[24]
) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u
(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26
] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//
4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (2.9(u(t))[23] - 14.
5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(
t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4
)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//
12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u
(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25]
)^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (0.96666
66666666667(u(t))[26] + 5.316666666666667(u(t))[24] - 3.3833333333333337(u(
t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[
25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / (
(1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3
(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[2
4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2)
 + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)))*(u(t))[24], Di
fferential(t)((u(t))[25]) ~ ((7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[2
3]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2
) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e
-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t)
)[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13
//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.316666666666667
(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.3833333333333337(u(t))[26]) /
 ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (
13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25]
 + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] 
- (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*
((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (1.45(u(t))[27] - 2.9(u
(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t
))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)
*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12
)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t
))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27]
 - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2
)) + (3.3833333333333337(u(t))[24] - 0.9666666666666667(u(t))[23] - 5.31666
6666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23
] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27
] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u
(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + 
(5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u
(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[2
6])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25]
)^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.
0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(
t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])
^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] -
 2(u(t))[25])^2))^2)))*(u(t))[25], Differential(t)((u(t))[26]) ~ ((2.9(u(t)
)[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24]
 - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28
] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(
t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24
] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(
t))[25])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)
*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(
t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t
))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.
0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))
[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25]
)^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(
t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + 
(1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.3166666666666
67(u(t))[26] + 0.9666666666666667(u(t))[28] - 3.3833333333333337(u(t))[27])
 / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) 
+ (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[2
6] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25
] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4
)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (3.3833333333333337(u
(t))[25] - 0.9666666666666667(u(t))[24] - 5.316666666666667(u(t))[26]) / ((
0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1/
/4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + 
(u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (
u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*(
(1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3
(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t)
)[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[
26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2)
)^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[2
7] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) +
 (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)))*(u(t))[26], Dif
ferential(t)((u(t))[27]) ~ ((7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25
]) / ((0.1 / ((1.0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[2
5] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.
2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27]
 + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(
t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (
13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*
((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))
[28]) / ((0.1 / ((1.0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t)
)[25] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] -
 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2
(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) 
+ (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u
(t))[27])^2))^2)) + (3.3833333333333337(u(t))[26] - 0.9666666666666667(u(t)
)[25] - 5.316666666666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*((0.2 / 
(1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2 / (1 +
 t) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12
)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t
))[27])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])
^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t)
)[26] - 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*((0.2
 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2 / (
1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13/
/12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(
u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (0.19333333333333336 
/ (1 + t) + 0.9666666666666667(u(t))[26] + 3.3833333333333337(u(t))[27] - 0
.19333333333333336(u(t))[25] - 1.4500000000000004(u(t))[28]) / ((0.1 / ((1.
0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^
2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0
(u(t))[28])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4
(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[
26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*((0.2 / (1 + t)
 + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (
u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2)) + (0.29 / (
1 + t) + 1.45(u(t))[26] - 0.29(u(t))[25] - 4.35(u(t))[28] - 5.8(u(t))[27]) 
/ ((0.3 / ((1.0e-6 + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] 
- (u(t))[27])^2) + (1//4)*((0.2 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u
(t))[25] - 2.0(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + 
(u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))
[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(
(0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2) + (1//4)*((0.2
 / (1 + t) + (u(t))[26] + (u(t))[27] - 0.2(u(t))[25] - 2.0(u(t))[28])^2))^2
)))*(u(t))[27], Differential(t)((u(t))[28]) ~ ((2.9(u(t))[28] + 7.25(u(t))[
27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26
] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[
27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t))[26
] - 0.2(u(t))[25] - (u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((-0.8 / (
1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(
u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] +
 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[
28] - 2(u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[27] - 0.966666666666
6667(u(t))[26] - 5.316666666666667(u(t))[28]) / ((0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t)
)[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.
2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0
.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[
27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (
1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12
)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (-1.16 / (1 + t) + 1.1
6(u(t))[25] + 14.5(u(t))[27] - 5.8(u(t))[26] - 26.1(u(t))[28]) / ((0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((
u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0
.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^
2) + (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2)
)^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))
[25] + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / 
(1 + t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0
(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.
0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (
u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2)) + (-0.58 / (1 + t) + 0.58(u
(t))[25] + 8.7(u(t))[28] + 11.6(u(t))[27] - 2.9(u(t))[26]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t)
)[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 /
 (1 + t) + 0.2(u(t))[25] + 3.0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) +
 (13//12)*((0.2 / (1 + t) + (u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25]
 + 8.0(u(t))[27] - 4(u(t))[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 +
 t) + 1.0 / (1 + t) + 0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t
))[28])^2))^2))*((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u(
t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t)
)[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2)) + (1.45 / (1 + t) + -1.45000000
00000002 / (1 + t) + 1.4500000000000002(u(t))[25] + 14.5(u(t))[27] - 7.25(u
(t))[26] - 17.4(u(t))[28]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t
))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.0(u
(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (u(t
))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.
8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26] -
 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t))[
25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2))*((1.0e-6 + (1//4
)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t)
)[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4
(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2)) + (-0.676
6666666666667 / (1 + t) + 0.9666666666666667 / (1 + t) + 0.6766666666666667
(u(t))[25] + 6.7666666666666675(u(t))[27] - 3.3833333333333337(u(t))[26] - 
1.4500000000000002(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (
u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[
27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((-0.2 / (1 + t) + 0.2(u(t))[25] + 3.
0(u(t))[27] - (u(t))[26] - 2.0(u(t))[28])^2) + (13//12)*((0.2 / (1 + t) + (
u(t))[26] - 0.2(u(t))[25] - (u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u(t))[26
] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 0.4(u(t
))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2))*((1.0e-6 + (1
//4)*((-0.8 / (1 + t) + 1.0 / (1 + t) + 0.8(u(t))[25] + 8.0(u(t))[27] - 4(u
(t))[26] - 5.0(u(t))[28])^2) + (13//12)*((-0.4 / (1 + t) + 1.0 / (1 + t) + 
0.4(u(t))[25] + 4.0(u(t))[27] - 2(u(t))[26] - 3.0(u(t))[28])^2))^2)))*(u(t)
)[28]]))), [0.06896551724137931, 0.10344827586206896, 0.13793103448275862, 
0.1724137931034483, 0.20689655172413793, 0.2413793103448276, 0.275862068965
51724, 0.3103448275862069, 0.3448275862068966, 0.3793103448275862  …  0.620
6896551724138, 0.6551724137931034, 0.6896551724137931, 0.7241379310344828, 
0.7586206896551724, 0.7931034482758621, 0.8275862068965517, 0.8620689655172
413, 0.896551724137931, 0.9310344827586207], (0.0, 20.0), SciMLBase.NullPar
ameters(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(),
 SciMLBase.StandardODEProblem())
 SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, SciML
Base.NullParameters, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, 
ModelingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0xdf25e7d8, 0x696e6530, 0x29f14c66, 0x275e7d90, 0x4
6e8350b)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋a
rg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x9fe0df6e, 0xb2e22df0, 0x16226548, 0xd5fd4c66, 0x6874c815)}
}, Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, N
othing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Nothing, Modelin
gToolkit.var"#472#generated_observed#471"{Bool, ModelingToolkit.ODESystem, 
Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}, Base.Pairs{Symbol, Un
ion{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(Sci
MLBase.ODEFunction{true, SciMLBase.AutoSpecialize, ModelingToolkit.var"#f#4
64"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :
t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0xdf25e7d8, 0x696e6530, 0x29f14c66, 0x275e7d90, 0x46e8350b)}, RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x9fe0df6
e, 0xb2e22df0, 0x16226548, 0xd5fd4c66, 0x6874c815)}}, Matrix{Float64}, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Vector{Symbol}, Symbol, Nothing, ModelingToolkit.var"#472#genera
ted_observed#471"{Bool, ModelingToolkit.ODESystem, Dict{Any, Any}}, Nothing
, ModelingToolkit.ODESystem}(ModelingToolkit.var"#f#464"{RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xdf25e7d8, 0x696e6530
, 0x29f14c66, 0x275e7d90, 0x46e8350b)}, RuntimeGeneratedFunctions.RuntimeGe
neratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0x9fe0df6e, 0xb2e22df0, 0x16226
548, 0xd5fd4c66, 0x6874c815)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0xdf25e7d8, 0x696e6530, 0x29f14c66, 0x275e7d90, 
0x46e8350b)}(quote
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (+)((+)((+)((/)(1.0666666666666667, (+)(1, t)
), (*)(-0.06666666666666667, (getindex)(ˍ₋arg1, 26))), (*)(0.33333333333333
33, (getindex)(ˍ₋arg1, 27))), (*)(-0.3333333333333333, (getindex)(ˍ₋arg1, 2
9)))
            var"(u(t))[1]" = (+)((+)((*)(-3.0, (getindex)(ˍ₋arg1, 28)), (*)
(-0.2, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
                (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, 
Val{1}(), Val{(29,)}(), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666
66666667, var"(u(t))[1]"), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 28)))
, (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 1))), (*)((+)((+)((/)(0.1, (^)
((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), v
ar"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 
2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), var"(u(t))[1]"), (getind
ex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)),
 (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 2))), 2))), (/)((+)((+)
((*)(5.8, (getindex)(ˍ₋arg1, 28)), (*)(14.5, (getindex)(ˍ₋arg1, 1))), (*)(-
2.9, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), var"(u(t))[1]"), (geti
ndex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)
), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getin
dex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (
*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getinde
x)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋ar
g1, 2)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 1)), (*)(1.4
5, (getindex)(ˍ₋arg1, 3))), (*)(-7.25, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)
((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"
(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(
-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)
(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex
)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2))
, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getind
ex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3))
, 2))), 2)))), (/)((+)((+)((*)(-1.45, var"(u(t))[1]"), (*)(2.9, (getindex)(
ˍ₋arg1, 1))), (*)(7.25, (getindex)(ˍ₋arg1, 28))), (*)((+)((+)((/)(0.3, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), va
r"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ
₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), var"(u(t))[1]"), (getinde
x)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), 
(*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 2))), 2)))), (/)((+)((+)
((*)(5.316666666666667, (getindex)(ˍ₋arg1, 1)), (*)(0.9666666666666667, (ge
tindex)(ˍ₋arg1, 3))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 2))), (*)
((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28)
)), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (g
etindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4,
 (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋a
rg1, 3)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 28)), (*)(-1
4.5, (getindex)(ˍ₋arg1, 1))), (*)(-5.8, (getindex)(ˍ₋arg1, 2))), (*)((+)((+
)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var
"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex
)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getinde
x)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)
), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1
, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (geti
ndex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), 2)))), (getindex)(ˍ₋arg1,
 1)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 28)
), (*)(7.25, (getindex)(ˍ₋arg1, 1))), (*)(2.9, (getindex)(ˍ₋arg1, 2))), (*)
((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋ar
g1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋a
rg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋a
rg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^
)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 28)), 2))), 2))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1,
 1)), (*)(-2.9, (getindex)(ˍ₋arg1, 3))), (*)(14.5, (getindex)(ˍ₋arg1, 2))),
 (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))
), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(
ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)
(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)
(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))
), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 28)), (*)(3.3833
333333333337, (getindex)(ˍ₋arg1, 1))), (*)(-5.316666666666667, (getindex)(ˍ
₋arg1, 2))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋ar
g1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3,
 (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex
)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2))
, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.3, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4
, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋
arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)
(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2)))), (/)((+)((+)((*)(0.9666
666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.3833333333333337, (getindex)(ˍ
₋arg1, 3))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^
)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (
getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), 
(getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4
, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋
arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 1)), (*)(-5
.8, (getindex)(ˍ₋arg1, 3))), (*)(-14.5, (getindex)(ˍ₋arg1, 2))), (*)((+)((+
)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4
, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))
), (getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)
), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3)
)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)(
(+)((*)(1.45, (getindex)(ˍ₋arg1, 4)), (*)(-2.9, (getindex)(ˍ₋arg1, 2))), (*
)(-7.25, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 
28)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg
1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), 
(getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (ge
tindex)(ˍ₋arg1, 2)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-3.38333333333
33337, (getindex)(ˍ₋arg1, 4)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 5
))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.6, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getin
dex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.3, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(
-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(
ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg
1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, 
(getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋
arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)),
 2))), 2))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 1)), (
*)(3.3833333333333337, (getindex)(ˍ₋arg1, 2))), (*)(-5.316666666666667, (ge
tindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.
6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (g
etindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.
3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4
)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getin
dex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋a
rg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (ge
tindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(-
2.9, (getindex)(ˍ₋arg1, 4)), (*)(5.8, (getindex)(ˍ₋arg1, 2))), (*)(14.5, (g
etindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (
getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (geti
ndex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋a
rg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 1)), (*)(2
.9, (getindex)(ˍ₋arg1, 3))), (*)(7.25, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)
((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), 
(/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), 
(getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)
), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-
4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ
₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 5)), (*)(
-2.9, (getindex)(ˍ₋arg1, 3))), (*)(-7.25, (getindex)(ˍ₋arg1, 4))), (*)((+)(
(+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1
)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)
), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (g
etindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)),
 (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex
)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 2)), (*
)(-5.8, (getindex)(ˍ₋arg1, 4))), (*)(-14.5, (getindex)(ˍ₋arg1, 3))), (*)((+
)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1,
 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 
2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), 
(getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (ge
tindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (getin
dex)(ˍ₋arg1, 3)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666666666
67, (getindex)(ˍ₋arg1, 2)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 3)))
, (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 4))), (*)((+)((+)((/)(0.1, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-
4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ
₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-
1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋
arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ
₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)
(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2
))), 2))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 3)), (*)(-14.5, (getinde
x)(ˍ₋arg1, 4))), (*)(-5.8, (getindex)(ˍ₋arg1, 5))), (*)((+)((+)((/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(
-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(
-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ
₋arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(
ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), 
(getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex
)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (
getindex)(ˍ₋arg1, 4)), (*)(-7.25, (getindex)(ˍ₋arg1, 5))), (*)(1.45, (getin
dex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (get
index)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (geti
ndex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (/)(0.3, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*
)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex
)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1
, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getin
dex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(5.31
6666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.3833333333333337, (getindex)(
ˍ₋arg1, 5))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)(
(/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5
)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)), (
/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (
getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), 
(getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4
, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋
arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 2)), (*)(
2.9, (getindex)(ˍ₋arg1, 4))), (*)(7.25, (getindex)(ˍ₋arg1, 3))), (*)((+)((+
)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)),
 (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)),
 (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5)))
, (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(
-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 5)), (*)
(5.8, (getindex)(ˍ₋arg1, 3))), (*)(14.5, (getindex)(ˍ₋arg1, 4))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2))
, (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2))
, (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))
), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getin
dex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (getindex
)(ˍ₋arg1, 4)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667,
 (getindex)(ˍ₋arg1, 3)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 4))), (
*)(-5.316666666666667, (getindex)(ˍ₋arg1, 5))), (*)((+)((+)((/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(
ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), 
(getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (
getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg
1, 7)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)
), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (geti
ndex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1,
 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2)))
, 2))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 7)), (*)(5.3
16666666666667, (getindex)(ˍ₋arg1, 5))), (*)(-3.3833333333333337, (getindex
)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getinde
x)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋a
rg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3
, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-
4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ
₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex
)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(-1.45, 
(getindex)(ˍ₋arg1, 3)), (*)(7.25, (getindex)(ˍ₋arg1, 4))), (*)(2.9, (getind
ex)(ˍ₋arg1, 5))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getin
dex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ
₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)
(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)
(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)
(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 
2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getinde
x)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(2.9, 
(getindex)(ˍ₋arg1, 4)), (*)(-14.5, (getindex)(ˍ₋arg1, 5))), (*)(-5.8, (geti
ndex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (get
index)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (get
index)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4))
, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((
+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getinde
x)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1
, 6)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 4)), (*)(14.5, 
(getindex)(ˍ₋arg1, 5))), (*)(-2.9, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)),
 (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(
0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((
+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (get
index)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (ge
tindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ
₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)
(1.45, (getindex)(ˍ₋arg1, 7)), (*)(-2.9, (getindex)(ˍ₋arg1, 5))), (*)(-7.25
, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)
), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))
), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^
)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (
getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex
)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6))
, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (getindex)(ˍ
₋arg1, 5)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667, (g
etindex)(ˍ₋arg1, 4)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 5))), (*)(
-5.316666666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.3, (^)((+)((
+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getinde
x)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1,
 8)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4,
 (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1,
 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getind
ex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1,
 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getind
ex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg
1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2
))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 4)), (*)(7.25, (getindex)(ˍ₋
arg1, 5))), (*)(2.9, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getind
ex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1
, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (g
etindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1,
 7)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1
, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getin
dex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋ar
g1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 
2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 7)), (*)(0.9
666666666666667, (getindex)(ˍ₋arg1, 8))), (*)(5.316666666666667, (getindex)
(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋a
rg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4
, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex
)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6))
, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3
, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋
arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(
ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(1.45, (g
etindex)(ˍ₋arg1, 8)), (*)(-2.9, (getindex)(ˍ₋arg1, 6))), (*)(-7.25, (getind
ex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(
ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)
(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.1, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*
)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)
(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)
(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 
2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getinde
x)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(2.9, 
(getindex)(ˍ₋arg1, 5)), (*)(-5.8, (getindex)(ˍ₋arg1, 7))), (*)(-14.5, (geti
ndex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex
)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (
*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), 
(*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getinde
x)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getinde
x)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1
, 7)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 7)), (*)(5.8, 
(getindex)(ˍ₋arg1, 5))), (*)(14.5, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)
(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (ge
tindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (get
index)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (ge
tindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ
₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (
getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (getindex)(ˍ₋ar
g1, 6)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.316666666666667, (getind
ex)(ˍ₋arg1, 7)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 9))), (*)(-3.38
33333333333337, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getind
ex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)))
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ
₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(
ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (
getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))),
 (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 7)), (*)(1.45, (getindex)(ˍ₋arg1,
 9))), (*)(-7.25, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)
(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9
)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex
)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex
)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)),
 (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))
)), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 5)), (*)(3.3833
333333333337, (getindex)(ˍ₋arg1, 6))), (*)(-5.316666666666667, (getindex)(ˍ
₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg
1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, 
(getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.1, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, 
(getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋ar
g1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋ar
g1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ
₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(2.9, (geti
ndex)(ˍ₋arg1, 6)), (*)(-14.5, (getindex)(ˍ₋arg1, 7))), (*)(-5.8, (getindex)
(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋a
rg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4
, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4
, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋
arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-
1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋
arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getin
dex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8))
, 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 5)), (*)(2.9, (get
index)(ˍ₋arg1, 7))), (*)(7.25, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), 
(*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getind
ex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋
arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-
4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getind
ex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7
)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (geti
ndex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7
)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 8)), (*)(5.8, (ge
tindex)(ˍ₋arg1, 6))), (*)(14.5, (getindex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.
3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)),
 (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getin
dex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ
₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(
-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getin
dex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋ar
g1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (get
index)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (getindex)(ˍ₋arg1,
 7)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 6))
, (*)(7.25, (getindex)(ˍ₋arg1, 7))), (*)(2.9, (getindex)(ˍ₋arg1, 8))), (*)(
(+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1
, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8))
, (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 
2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)(
(+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (ge
tindex)(ˍ₋arg1, 6)), 2))), 2))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 7)
), (*)(-2.9, (getindex)(ˍ₋arg1, 9))), (*)(14.5, (getindex)(ˍ₋arg1, 8))), (*
)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋ar
g1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8
)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2)))
, 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)))
, 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)
), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2)))), 
(/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 6)), (*)(3.38333333
33333337, (getindex)(ˍ₋arg1, 7))), (*)(-5.316666666666667, (getindex)(ˍ₋arg
1, 8))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8
)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (get
index)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋ar
g1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (get
index)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)((+)((+
)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex
)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1,
 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋ar
g1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666
666667, (getindex)(ˍ₋arg1, 10)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1
, 9))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)
), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)(
(+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getind
ex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋
arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(
-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (geti
ndex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (^)((+)((
+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getinde
x)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1
, 10)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 7)), (*)(-5.8,
 (getindex)(ˍ₋arg1, 9))), (*)(-14.5, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^
)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (
getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (g
etindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getind
ex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8))
, (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getinde
x)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2)))), (/)((+)((+)
((*)(1.45, (getindex)(ˍ₋arg1, 10)), (*)(-2.9, (getindex)(ˍ₋arg1, 8))), (*)(
-7.25, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)
), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ
₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2
)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2)
)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9
))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)),
 (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (ge
tindex)(ˍ₋arg1, 8)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666666
66667, (getindex)(ˍ₋arg1, 7)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 8
))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)),
 (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex
)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex
)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getin
dex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg
1, 7)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 9)), (*)(-7.25
, (getindex)(ˍ₋arg1, 10))), (*)(1.45, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)
((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))),
 (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)),
 (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10)
)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))
), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)),
 (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (ge
tindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1,
 10)), (*)(5.8, (getindex)(ˍ₋arg1, 8))), (*)(14.5, (getindex)(ˍ₋arg1, 9))),
 (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getind
ex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)
), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 1
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(
ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2)))
, 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 10)), (*)(
5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)(0.9666666666666667, (getind
ex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (get
index)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (g
etindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (ge
tindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)
(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)
), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+
)((*)(-1.45, (getindex)(ˍ₋arg1, 7)), (*)(2.9, (getindex)(ˍ₋arg1, 9))), (*)(
7.25, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg
1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg
1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))
), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg
1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (geti
ndex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)
), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/
)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 8)), (*)(-5.8, (getindex)(ˍ₋arg1, 10)
)), (*)(-14.5, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋
arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)),
 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10))
, 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 1
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋a
rg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (getindex)(ˍ₋arg1, 9)), (*)
((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 
10)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 12))), (*)(-3.383333333333
3337, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋a
rg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 
8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))
), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ
₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)
), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))
), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 10)), (*)(1.45, (getindex
)(ˍ₋arg1, 12))), (*)(-7.25, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (get
index)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.1
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)
), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (geti
ndex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getinde
x)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10))
, (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getin
dex)(ˍ₋arg1, 12)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 9))
, (*)(14.5, (getindex)(ˍ₋arg1, 10))), (*)(-2.9, (getindex)(ˍ₋arg1, 11))), (
*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11))
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)
(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋
arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 
12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 
2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 8)), (*)(2.9, (getin
dex)(ˍ₋arg1, 10))), (*)(7.25, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.6,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (ge
tindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.
3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9
)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (get
index)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)
), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (
^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), 
(getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getinde
x)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex
)(ˍ₋arg1, 8)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 9))), (*)(-5.3166
66666666667, (getindex)(ˍ₋arg1, 10))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 
9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ
₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8
)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12))
, 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (geti
ndex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg
1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 
2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 9)), (*)(-14.5, (getin
dex)(ˍ₋arg1, 10))), (*)(-5.8, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (g
etindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (ge
tindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getin
dex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10
)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (get
index)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (geti
ndex)(ˍ₋arg1, 10)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.966666666666
6667, (getindex)(ˍ₋arg1, 9)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 10
))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)
), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)
((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (get
index)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getinde
x)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11))
, (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12)
), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 2))
), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
0)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((
+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (g
etindex)(ˍ₋arg1, 9)), 2))), 2))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 1
0)), (*)(-5.8, (getindex)(ˍ₋arg1, 12))), (*)(-14.5, (getindex)(ˍ₋arg1, 11))
), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 
2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getind
ex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)
(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg
1, 13)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋ar
g1, 12)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 10)), (*)(-2
.9, (getindex)(ˍ₋arg1, 12))), (*)(14.5, (getindex)(ˍ₋arg1, 11))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1,
 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9
)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)
(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))
), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2)
)), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 13)), (*)(-2.9, (getind
ex)(ˍ₋arg1, 11))), (*)(-7.25, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.1
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10
)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+
)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (ge
tindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getind
ex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)
), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (
/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12
)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), 
(getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, (
getindex)(ˍ₋arg1, 13)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 12))), 
(*)(5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1, (^)((
+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (ge
tindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex
)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋
arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*
)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (ge
tindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getind
ex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 9)
), (*)(7.25, (getindex)(ˍ₋arg1, 10))), (*)(2.9, (getindex)(ˍ₋arg1, 11))), (
*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)
(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ
₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (g
etindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 
9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋ar
g1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex
)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)))), (getindex)(ˍ₋arg1, 11
)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667, (getindex)
(ˍ₋arg1, 10)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 11))), (*)(-5.316
666666666667, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1,
 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (geti
ndex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+)((+
)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋a
rg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)
(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)
), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+
)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋a
rg1, 10)), 2))), 2))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 10)), (*)(
2.9, (getindex)(ˍ₋arg1, 12))), (*)(7.25, (getindex)(ˍ₋arg1, 11))), (*)((+)(
(+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1
, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ
₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex
)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 1
4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋
arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (/)((+)((+)((*)(2.9, (ge
tindex)(ˍ₋arg1, 11)), (*)(-5.8, (getindex)(ˍ₋arg1, 13))), (*)(-14.5, (getin
dex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), 
(getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (ge
tindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1
, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11
)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(
ˍ₋arg1, 14)), (*)(-2.9, (getindex)(ˍ₋arg1, 12))), (*)(-7.25, (getindex)(ˍ₋a
rg1, 13))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(
-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getinde
x)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (
*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)
), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), 
(getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (geti
ndex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)(
(+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 13)), (*)(5.8, (getindex)(ˍ₋arg1, 11))
), (*)(14.5, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋
arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 
10)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋ar
g1, 13)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(
ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13))
, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋ar
g1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (g
etindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*
)(0.9666666666666667, (getindex)(ˍ₋arg1, 14)), (*)(-3.3833333333333337, (ge
tindex)(ˍ₋arg1, 13))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 12))), (*)
((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ
₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 1
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getind
ex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (get
index)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋ar
g1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 1
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getind
ex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (getindex)(ˍ₋arg1, 
12)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 13))
, (*)(-7.25, (getindex)(ˍ₋arg1, 14))), (*)(1.45, (getindex)(ˍ₋arg1, 15))), 
(*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 1
4)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1
, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (get
index)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (
getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1
, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (get
index)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)((+)((+)((*)(-
0.9666666666666667, (getindex)(ˍ₋arg1, 11)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 12))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 13))), (*)((
+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 
2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex
)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.3, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getin
dex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1
, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex
)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(-1.45
, (getindex)(ˍ₋arg1, 11)), (*)(2.9, (getindex)(ˍ₋arg1, 13))), (*)(7.25, (ge
tindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12)))
, (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 
2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋a
rg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 1
2))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 
2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 12)), (*)(-5.8, (getindex)(ˍ
₋arg1, 14))), (*)(-14.5, (getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getind
ex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), 
(*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (ge
tindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))),
 (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (ge
tindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/
)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 14)), (*)(5.316666666
666667, (getindex)(ˍ₋arg1, 13))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1
, 15))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ
₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)),
 (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getinde
x)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
3)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), 
(*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (ge
tindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getinde
x)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
4)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (/)((+)
((+)((*)(-2.9, (getindex)(ˍ₋arg1, 14)), (*)(5.8, (getindex)(ˍ₋arg1, 12))), 
(*)(14.5, (getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(
ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)
), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getin
dex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1,
 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋a
rg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (
getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1,
 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (geti
ndex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (getindex)(ˍ₋arg1
, 13)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 14
)), (*)(1.45, (getindex)(ˍ₋arg1, 16))), (*)(-7.25, (getindex)(ˍ₋arg1, 15)))
, (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 
12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getin
dex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋ar
g1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (g
etindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4,
 (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)
(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋ar
g1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)
(5.316666666666667, (getindex)(ˍ₋arg1, 14)), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 16))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 15))), (*)(
(+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getinde
x)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (geti
ndex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg
1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getinde
x)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))), (/)((+)((+)((*)(-1.4
5, (getindex)(ˍ₋arg1, 12)), (*)(7.25, (getindex)(ˍ₋arg1, 13))), (*)(2.9, (g
etindex)(ˍ₋arg1, 14))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))
), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 
13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))),
 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 13)), (*)(14.5, (getindex)(
ˍ₋arg1, 14))), (*)(-2.9, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.3, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(
-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getind
ex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (ge
tindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))),
 (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (ge
tindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (/
)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 12)), (*)(3.383333333
3333337, (getindex)(ˍ₋arg1, 13))), (*)(-5.316666666666667, (getindex)(ˍ₋arg
1, 14))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(
ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13))
, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getind
ex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)),
 (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (g
etindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getind
ex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+
)((+)((*)(2.9, (getindex)(ˍ₋arg1, 13)), (*)(-14.5, (getindex)(ˍ₋arg1, 14)))
, (*)(-5.8, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex
)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 1
4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg
1, 15)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ
₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)),
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg
1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (ge
tindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (getindex)(ˍ₋ar
g1, 14)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 1
4)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))), (*)(14.5, (getindex)(ˍ₋arg1, 15)))
, (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 
2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getind
ex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋ar
g1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (get
index)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((
*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)
(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (g
etindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋a
rg1, 16)), 2))), 2))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 17)), (*)(-
2.9, (getindex)(ˍ₋arg1, 15))), (*)(-7.25, (getindex)(ˍ₋arg1, 16))), (*)((+)
((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg
1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(
ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 
17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ
₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)(-0.9666
666666666667, (getindex)(ˍ₋arg1, 13)), (*)(3.3833333333333337, (getindex)(ˍ
₋arg1, 14))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)
((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 1
5))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋ar
g1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1
, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg
1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getin
dex)(ˍ₋arg1, 14)), (*)(-5.8, (getindex)(ˍ₋arg1, 16))), (*)(-14.5, (getindex
)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)
(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)),
 (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0
.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), 
(getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), 
(/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16
))), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)),
 (getindex)(ˍ₋arg1, 16)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, 
(getindex)(ˍ₋arg1, 17)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 16))),
 (*)(5.316666666666667, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (g
etindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getinde
x)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (get
index)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getin
dex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1
4)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16))
, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (get
index)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1,
 13)), (*)(7.25, (getindex)(ˍ₋arg1, 14))), (*)(2.9, (getindex)(ˍ₋arg1, 15))
), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)),
 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getin
dex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋a
rg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (
getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((
+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (ge
tindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)(
(*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex
)(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 1
5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (g
etindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (getindex)(ˍ₋
arg1, 15)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667, (g
etindex)(ˍ₋arg1, 14)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 15))), (*
)(-5.316666666666667, (getindex)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.1, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (get
index)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)
(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getin
dex)(ˍ₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (g
etindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), 
(getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getin
dex)(ˍ₋arg1, 14)), 2))), 2))), (/)((+)((+)((*)(0.9666666666666667, (getinde
x)(ˍ₋arg1, 18)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 17))), (*)(5.3
16666666666667, (getindex)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg
1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (ge
tindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getin
dex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ
₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getinde
x)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
7)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (
getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ
₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 17)), (*
)(5.8, (getindex)(ˍ₋arg1, 15))), (*)(14.5, (getindex)(ˍ₋arg1, 16))), (*)((+
)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2
))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2)))
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(
ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getind
ex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1,
 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)
), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 14)), (*)(2.9, (g
etindex)(ˍ₋arg1, 16))), (*)(7.25, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17))
, (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2)),
 (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 1
5))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg
1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2)
)), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 1
5))), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex
)(ˍ₋arg1, 18)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))), (*)(-7.25, (getindex)(ˍ
₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋
arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)
(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (ge
tindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
6)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16))
, (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (ge
tindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/
)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 15)), (*)(-5.8, (getindex)(ˍ₋arg1, 17
))), (*)(-14.5, (getindex)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)
(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg
1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ
₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getinde
x)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
7)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ
₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)),
 (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (getindex)(
ˍ₋arg1, 16)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667, 
(getindex)(ˍ₋arg1, 15)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 16))), 
(*)(-5.316666666666667, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (g
etindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getinde
x)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (get
index)(ˍ₋arg1, 18)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getin
dex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17
)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16))
, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (get
index)(ˍ₋arg1, 15)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 1
8)), (*)(5.8, (getindex)(ˍ₋arg1, 16))), (*)(14.5, (getindex)(ˍ₋arg1, 17))),
 (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getinde
x)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)
(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg
1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(
ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋ar
g1, 18)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg
1, 19)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 18))), (*)(5.316666666
666667, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1,
 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)),
 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex
)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg
1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (ge
tindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
9)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 15)), (*)(2.9, 
(getindex)(ˍ₋arg1, 17))), (*)(7.25, (getindex)(ˍ₋arg1, 16))), (*)((+)((+)((
/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16)
)), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)),
 (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))),
 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 
2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1,
 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getinde
x)(ˍ₋arg1, 16)), (*)(-5.8, (getindex)(ˍ₋arg1, 18))), (*)(-14.5, (getindex)(
ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ
₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*
)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (g
etindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))
), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (
getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg
1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 17))), (*)(-7.25, (getindex)(ˍ₋arg1, 
18))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (g
etindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)
(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)
), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (/)(0.3, (
^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)),
 (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (geti
ndex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg
1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4
, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (getindex
)(ˍ₋arg1, 17)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667
, (getindex)(ˍ₋arg1, 16)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 17)))
, (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getin
dex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)),
 (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (g
etindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (get
index)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17
)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (g
etindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1,
 18)), (*)(-7.25, (getindex)(ˍ₋arg1, 19))), (*)(1.45, (getindex)(ˍ₋arg1, 20
))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋ar
g1, 19)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ
₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)
((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getind
ex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ
₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)
((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 19)), (*)(5.316666666666667, (
getindex)(ˍ₋arg1, 18))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 20))), 
(*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex
)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2)), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1
, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (get
index)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (
getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ
₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1
, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)((*)(
-2.9, (getindex)(ˍ₋arg1, 19)), (*)(5.8, (getindex)(ˍ₋arg1, 17))), (*)(14.5,
 (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), 
(getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 
2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)
)), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)
(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (ge
tindex)(ˍ₋arg1, 16)), (*)(2.9, (getindex)(ˍ₋arg1, 18))), (*)(7.25, (getinde
x)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex
)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)),
 (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2)), (/)(
0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 
18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (geti
ndex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
8)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))))
, (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 17)), (*)(-5.8, (getindex)(ˍ₋arg1
, 19))), (*)(-14.5, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.6, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ
₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)),
 (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)), (/)(0.3, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-
4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getinde
x)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)
(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), 
(*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getinde
x)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
8)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (getind
ex)(ˍ₋arg1, 18)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666666666
67, (getindex)(ˍ₋arg1, 17)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 18)
)), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)
), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), 
(getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (g
etindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)
), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), 
(getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg
1, 19)), (*)(1.45, (getindex)(ˍ₋arg1, 21))), (*)(-7.25, (getindex)(ˍ₋arg1, 
20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋
arg1, 20)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)
(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)
), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (
^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)),
 (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (geti
ndex)(ˍ₋arg1, 21)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg
1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4
, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)))), (/)((+)((
+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 19)), (*)(0.9666666666666667, 
(getindex)(ˍ₋arg1, 21))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 20)))
, (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 
2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getind
ex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (g
etindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4,
 (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)
(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21
)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (ge
tindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)))), (/)((+)((+)((*
)(-1.45, (getindex)(ˍ₋arg1, 17)), (*)(7.25, (getindex)(ˍ₋arg1, 18))), (*)(2
.9, (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)
), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋
arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)),
 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 18)), (*)(14.5, (geti
ndex)(ˍ₋arg1, 19))), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.
1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
0)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (
getindex)(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)
), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 
18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)
), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))
)), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 18)), (*)(-14.5, (getindex)(ˍ₋a
rg1, 19))), (*)(-5.8, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)
(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)
), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)
(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getin
dex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getinde
x)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19))
, (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getin
dex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)))), (geti
ndex)(ˍ₋arg1, 19)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.8, (getindex)
(ˍ₋arg1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 21))), (*)(14.5, (getindex)(ˍ₋a
rg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (getindex
)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19
)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (geti
ndex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)
), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), 
(getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (get
index)(ˍ₋arg1, 21)), 2))), 2))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 2
2)), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), (*)(-7.25, (getindex)(ˍ₋arg1, 21))
), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (
getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1,
 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (geti
ndex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋a
rg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (
getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4
, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex
)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋a
rg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (
getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)))), (/)((+)((+)((
*)(-1.45, (getindex)(ˍ₋arg1, 18)), (*)(7.25, (getindex)(ˍ₋arg1, 19))), (*)(
2.9, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg
1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)
)), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21))
, 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 
22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getin
dex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6,
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ
₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20))
, 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 18))
, (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 19))), (*)(-5.316666666666667,
 (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 2
0))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 
2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2)
)), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)
(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg
1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)
)), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 19)), (*)(-5.8, (getinde
x)(ˍ₋arg1, 21))), (*)(-14.5, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)),
 (*)(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (ge
tindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21
))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2
))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)),
 (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))))
, (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 21)), (*)(0.96666
66666666667, (getindex)(ˍ₋arg1, 22))), (*)(5.316666666666667, (getindex)(ˍ₋
arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (getinde
x)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
9)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (get
index)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(
0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20
)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)),
 (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (get
index)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)))), (ge
tindex)(ˍ₋arg1, 20)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-2.9, (getind
ex)(ˍ₋arg1, 21)), (*)(-7.25, (getindex)(ˍ₋arg1, 22))), (*)(1.45, (getindex)
(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)
), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (
/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21
)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (
getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (
/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 21)), (*)(-3.383333333
3333337, (getindex)(ˍ₋arg1, 22))), (*)(0.9666666666666667, (getindex)(ˍ₋arg
1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)
(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋
arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)
(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)),
 (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (g
etindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getind
ex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+
)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 19)), (*)(2.9, (getindex)(ˍ₋arg1, 21)))
, (*)(7.25, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 2
0)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getind
ex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)
(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg
1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ
₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)),
 (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)
(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg
1, 19)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg
1, 19)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 20))), (*)(-5.316666666
666667, (getindex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋a
rg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 1
9)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg
1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (ge
tindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋a
rg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 1
9)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 20)), (*)(-14.5, 
(getindex)(ˍ₋arg1, 21))), (*)(-5.8, (getindex)(ˍ₋arg1, 22))), (*)((+)((+)((
/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22
)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)
), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1,
 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋a
rg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 
2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2)))
, 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 22)), (*)(5.8, (getindex)
(ˍ₋arg1, 20))), (*)(14.5, (getindex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22)))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (g
etindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)))), (
getindex)(ˍ₋arg1, 21)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666
66666667, (getindex)(ˍ₋arg1, 20)), (*)(3.3833333333333337, (getindex)(ˍ₋arg
1, 21))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 22))), (*)((+)((+)((/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23))
, (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)),
 (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 2
3))), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)
(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2)
)), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 2
2))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)((+)((+)((*)(0.96666666666666
67, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 22))
), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23))
, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (get
index)(ˍ₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getind
ex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21
)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (
/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23
)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), 
(getindex)(ˍ₋arg1, 24)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋a
rg1, 20)), (*)(7.25, (getindex)(ˍ₋arg1, 21))), (*)(2.9, (getindex)(ˍ₋arg1, 
22))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 2
4)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (g
etindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (get
index)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((
*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)
(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (geti
ndex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg
1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3
, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((
+)((*)(5.8, (getindex)(ˍ₋arg1, 21)), (*)(14.5, (getindex)(ˍ₋arg1, 22))), (*
)(-2.9, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1,
 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)),
 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex
)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg
1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (ge
tindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 2
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+)((+)((*)(1.4
5, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getindex)(ˍ₋arg1, 22))), (*)(-7.25, 
(getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 
21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)
), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))
), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))),
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ
₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)
), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))
), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 21)), (*)(-14.5, (getinde
x)(ˍ₋arg1, 22))), (*)(-5.8, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (get
index)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), 
(getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (g
etindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg
1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), 
(getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))),
 (getindex)(ˍ₋arg1, 22)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-3.383333
3333333337, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (getindex)(ˍ₋ar
g1, 23))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/
)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1,
 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)
), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), 
(getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 
2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 
24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)((+)((+)((*)(-1.45, (getinde
x)(ˍ₋arg1, 21)), (*)(7.25, (getindex)(ˍ₋arg1, 22))), (*)(2.9, (getindex)(ˍ₋
arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getinde
x)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
2)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (get
index)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)),
 (getindex)(ˍ₋arg1, 24)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (get
index)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (/)
((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 23)), (*)(-7.25, (getindex)(ˍ₋arg1, 2
4))), (*)(1.45, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (geti
ndex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg
1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ
₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋a
rg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(
-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getin
dex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ
₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ
₋arg1, 21)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 22))), (*)(-5.31666
6666666667, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex
)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 2
3)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg
1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1,
 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, 
(getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (geti
ndex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg
1, 23)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 22)), (*)(-5.
8, (getindex)(ˍ₋arg1, 24))), (*)(-14.5, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋
arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1
, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋ar
g1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 
2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 24)), (*)(5.8, (getin
dex)(ˍ₋arg1, 22))), (*)(14.5, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22))
, (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (g
etindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (geti
ndex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2
3)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2)))
), (getindex)(ˍ₋arg1, 23)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666
666666666667, (getindex)(ˍ₋arg1, 22)), (*)(3.3833333333333337, (getindex)(ˍ
₋arg1, 23))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 24))), (*)((+)((+)
((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 2
3))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)
), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))
), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg
1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getin
dex)(ˍ₋arg1, 24)), (*)(1.45, (getindex)(ˍ₋arg1, 26))), (*)(-7.25, (getindex
)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)
(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), 
(*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), 
(getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 2
3)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getin
dex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24
)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2)))),
 (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 23)), (*)(14.5, (getindex)(ˍ₋arg1,
 24))), (*)(-2.9, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+
)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getinde
x)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋a
rg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1
, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4,
 (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getin
dex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)
(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)
), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((
+)((*)(-1.45, (getindex)(ˍ₋arg1, 22)), (*)(2.9, (getindex)(ˍ₋arg1, 24))), (
*)(7.25, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1
, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getinde
x)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋ar
g1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (g
etindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 
22)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 23)), (*)(-14.5,
 (getindex)(ˍ₋arg1, 24))), (*)(-5.8, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)(
(/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23
))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2)))
, 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))
), 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 24)), (*)(0
.9666666666666667, (getindex)(ˍ₋arg1, 26))), (*)(-3.3833333333333337, (geti
ndex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24
)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25)
)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2)))
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg
1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (g
etindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2)
))), (getindex)(ˍ₋arg1, 24)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-1.45
, (getindex)(ˍ₋arg1, 23)), (*)(7.25, (getindex)(ˍ₋arg1, 24))), (*)(2.9, (ge
tindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25)))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 
2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋ar
g1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 2
5))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 
2))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getindex)(ˍ₋
arg1, 26))), (*)(14.5, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3
, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex
)(ˍ₋arg1, 25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (geti
ndex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getind
ex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)
), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (geti
ndex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)))), (/)(
(+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 23)), (*)(3.38333333333
33337, (getindex)(ˍ₋arg1, 24))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1,
 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 
27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (
getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2)), (/)(0.1, (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3
, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex
)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (get
index)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex
)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24
)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)(
(+)((*)(2.9, (getindex)(ˍ₋arg1, 24)), (*)(-5.8, (getindex)(ˍ₋arg1, 26))), (
*)(-14.5, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg
1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)
), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (g
etindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 
23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getin
dex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋a
rg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (
getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1,
 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (geti
ndex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)((*)(1
.45, (getindex)(ˍ₋arg1, 27)), (*)(-2.9, (getindex)(ˍ₋arg1, 25))), (*)(-7.25
, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)),
 (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))),
 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)
(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋a
rg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex
)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 2
5)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2
))), 2)))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 27)), (*
)(-3.3833333333333337, (getindex)(ˍ₋arg1, 26))), (*)(5.316666666666667, (ge
tindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25)))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 
2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋ar
g1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), 
(getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 
2)))), (getindex)(ˍ₋arg1, 25)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.
9666666666666667, (getindex)(ˍ₋arg1, 24)), (*)(3.3833333333333337, (getinde
x)(ˍ₋arg1, 25))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 26))), (*)((+)
((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2)
)), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(
ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getinde
x)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)
), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), 
(getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg
1, 27)), (*)(5.8, (getindex)(ˍ₋arg1, 25))), (*)(14.5, (getindex)(ˍ₋arg1, 26
))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg
1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (ge
tindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ
₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)),
 (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (/)(0.1, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(
-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]
"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 
2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 24)), (*)(2.9, (geti
ndex)(ˍ₋arg1, 26))), (*)(7.25, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.
3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26))
, (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (
getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)
), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 
27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, 
(getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(
ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)((*)(1.45, var"(u(t))[30]"), (*)(-2.9
, (getindex)(ˍ₋arg1, 26))), (*)(-7.25, (getindex)(ˍ₋arg1, 27))), (*)((+)((+
)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))),
 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(
ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), 
(*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))
[30]"), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 25)), (*)(-5.8
, (getindex)(ˍ₋arg1, 27))), (*)(-14.5, (getindex)(ˍ₋arg1, 26))), (*)((+)((+
)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))),
 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(
ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)), (ge
tindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), 2)))), (/
)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 27)), (*)(0.966666666
6666667, var"(u(t))[30]")), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 26)))
, (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 
24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getin
dex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋ar
g1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (g
etindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (/)(0.1, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4,
 (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26))
, var"(u(t))[30]"), 2))), 2)))), (getindex)(ˍ₋arg1, 26)), (*)((+)((+)((+)((
+)((+)((/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 29)), (*)(5.3
16666666666667, (getindex)(ˍ₋arg1, 27))), (*)(-3.3833333333333337, var"(u(t
))[30]")), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-
1, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]")
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, (getinde
x)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg
1, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2)))
, 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"
), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getindex)
(ˍ₋arg1, 29)), 2))), 2))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(
ˍ₋arg1, 25)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 26))), (*)(-5.3166
66666666667, (getindex)(ˍ₋arg1, 27))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋
arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 
25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var
"(u(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u
(t))[30]"), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (
getindex)(ˍ₋arg1, 29)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ
₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*
)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((
+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 26)), (*)(-14.5, (getindex)(ˍ₋arg1, 27))
), (*)(-5.8, var"(u(t))[30]")), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 2
5)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25)), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))
[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))),
 (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30
]"), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getinde
x)(ˍ₋arg1, 29)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
var"(u(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2
))), 2)))), (/)((+)((+)((*)(-2.9, var"(u(t))[30]"), (*)(5.8, (getindex)(ˍ₋a
rg1, 26))), (*)(14.5, (getindex)(ˍ₋arg1, 27))), (*)((+)((+)((/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[30]"), (getindex)(ˍ₋arg1
, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (get
index)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋a
rg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 2
5)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2)))
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[
30]")), (getindex)(ˍ₋arg1, 29)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var
"(u(t))[30]"), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 25)),
 (*)(2.9, (getindex)(ˍ₋arg1, 27))), (*)(7.25, (getindex)(ˍ₋arg1, 26))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[
30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)), (
/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26)
)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 27)), (geti
ndex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2
7)), (*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2))), 2))), (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (get
index)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)
(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 29)), 
(*)(-2.9, (getindex)(ˍ₋arg1, 27))), (*)(-7.25, var"(u(t))[30]")), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1,
 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2
6)), var"(u(t))[30]"), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 27)), (getindex)(
ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (
*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1
, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2))),
 2)))), (getindex)(ˍ₋arg1, 27)), (+)((+)((+)((+)((+)((*)(0.2, var"(u(t))[1]
"), (*)(-0.2, (getindex)(ˍ₋arg1, 4))), (*)(-1, (getindex)(ˍ₋arg1, 28))), (*
)(2.0, (getindex)(ˍ₋arg1, 1))), (*)(-2.0, (getindex)(ˍ₋arg1, 2))), (getinde
x)(ˍ₋arg1, 3)), (+)((+)((+)((+)((+)((*)(-0.2, (getindex)(ˍ₋arg1, 24)), (*)(
-1, var"(u(t))[30]")), (*)(-2.0, (getindex)(ˍ₋arg1, 26))), (*)(2.0, (getind
ex)(ˍ₋arg1, 27))), (*)(0.2, (getindex)(ˍ₋arg1, 29))), (getindex)(ˍ₋arg1, 25
)))
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x9fe0df6e, 0xb2e22df0, 0x16226548, 0xd5fd4c66, 0x6874c815)}(quot
e
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (+)((+)((+)((/)(1.0666666666666667, (+)(1, t)
), (*)(-0.06666666666666667, (getindex)(ˍ₋arg1, 26))), (*)(0.33333333333333
33, (getindex)(ˍ₋arg1, 27))), (*)(-0.3333333333333333, (getindex)(ˍ₋arg1, 2
9)))
            var"(u(t))[1]" = (+)((+)((*)(-3.0, (getindex)(ˍ₋arg1, 28)), (*)
(-0.2, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/Symbolics/FGTCH/src/build_function.jl:519 =#
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds
 begin
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, var"(u(t))[1]"), (*)(3.3833333333333337, (getindex)(ˍ₋
arg1, 28))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 1))), (*)((+)((+)((
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u
(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ
₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(
ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), 
(getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), var"(u(t))[1]
"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 2))), 2))), 
(/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 28)), (*)(14.5, (getindex)(ˍ₋arg1, 
1))), (*)(-2.9, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), var"(u(t))[
1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 2))), 2)),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), 2))
), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)
), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (get
index)(ˍ₋arg1, 2)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 1
)), (*)(1.45, (getindex)(ˍ₋arg1, 3))), (*)(-7.25, (getindex)(ˍ₋arg1, 2))), 
(*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 
28))), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)),
 (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2)))
, (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(
-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(
ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(-1.45, var"(u(t))[1]"), (*)(2.9, 
(getindex)(ˍ₋arg1, 1))), (*)(7.25, (getindex)(ˍ₋arg1, 28))), (*)((+)((+)((/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(
t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋
arg1, 2)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ
₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (
getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), var"(u(t))[1]"
), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 2))), 2)))), 
(/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 1)), (*)(0.9666666666
666667, (getindex)(ˍ₋arg1, 3))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1
, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(
ˍ₋arg1, 28))), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg
1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋ar
g1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (ge
tindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 2
8)), (*)(-14.5, (getindex)(ˍ₋arg1, 1))), (*)(-5.8, (getindex)(ˍ₋arg1, 2))),
 (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1,
 28))), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28))
, (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))
), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getin
dex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), 2)))), (getind
ex)(ˍ₋arg1, 1))
                        ˍ₋out[2] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-1.45, (getindex)(ˍ₋arg1, 28)), (*)(7.25, (getindex)(ˍ₋arg1, 1))), (*)(2.9,
 (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (g
etindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1
, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2)), 
(/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3
)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), 
(/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), 
(getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋
arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(
3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2))), (/)((+)((+
)((*)(5.8, (getindex)(ˍ₋arg1, 1)), (*)(-2.9, (getindex)(ˍ₋arg1, 3))), (*)(1
4.5, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28))
, (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋
arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2
)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)
)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2
)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (geti
ndex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getin
dex)(ˍ₋arg1, 28)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 1))), (*)(-5.
316666666666667, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(
ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (
getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 2
8)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3
)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getinde
x)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)
), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ
₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 
2)))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.3
833333333333337, (getindex)(ˍ₋arg1, 3))), (*)(5.316666666666667, (getindex)
(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋
arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(
3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getind
ex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(
-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getinde
x)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(2.9, (
getindex)(ˍ₋arg1, 1)), (*)(-5.8, (getindex)(ˍ₋arg1, 3))), (*)(-14.5, (getin
dex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex
)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), 
(*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (ge
tindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), 
(*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getind
ex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg
1, 3)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 4)), (*)(-2.9
, (getindex)(ˍ₋arg1, 2))), (*)(-7.25, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)(
(/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, 
(^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))),
 (getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)),
 (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3)))
, (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(
-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 4)), 2))), 2)))), (getindex)(ˍ₋arg1, 2))
                        ˍ₋out[3] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-3.3833333333333337, (getindex)(ˍ₋arg1, 4)), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 5))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 3))), (*)((+)(
(+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)
), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (g
etindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)),
 (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex
)(ˍ₋arg1, 5)), 2))), 2))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(
ˍ₋arg1, 1)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 2))), (*)(-5.316666
666666667, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ
₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1
, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), 
(getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)
((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 4)), (*)(5.8, (getindex)(ˍ₋arg1, 2)))
, (*)(14.5, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(
ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ
₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))
), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg
1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), 
(getindex)(ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋ar
g1, 1)), (*)(2.9, (getindex)(ˍ₋arg1, 3))), (*)(7.25, (getindex)(ˍ₋arg1, 2))
), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)
), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)
(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋ar
g1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1))
, (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋a
rg1, 5)), (*)(-2.9, (getindex)(ˍ₋arg1, 3))), (*)(-7.25, (getindex)(ˍ₋arg1, 
4))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1
, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getin
dex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1,
 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getind
ex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ
₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4
))), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ
₋arg1, 2)), (*)(-5.8, (getindex)(ˍ₋arg1, 4))), (*)(-14.5, (getindex)(ˍ₋arg1
, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋ar
g1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (get
index)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg
1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)
(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))),
 2)))), (getindex)(ˍ₋arg1, 3))
                        ˍ₋out[4] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 2)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 3))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 4))), (*)((+)
((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 
2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3
)), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5
))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (
*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getinde
x)(ˍ₋arg1, 4)), 2))), 2))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 3)), (*
)(-14.5, (getindex)(ˍ₋arg1, 4))), (*)(-5.8, (getindex)(ˍ₋arg1, 5))), (*)((+
)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1,
 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 
3)), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 
5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (ge
tindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+
)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 4)), (*)(-7.25, (getindex)(ˍ₋arg1, 5))),
 (*)(1.45, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ
₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg
1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), 
(getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)
((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.383333333333
3337, (getindex)(ˍ₋arg1, 5))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 6
))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 
5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 
2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getinde
x)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getinde
x)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4
)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(
ˍ₋arg1, 2)), (*)(2.9, (getindex)(ˍ₋arg1, 4))), (*)(7.25, (getindex)(ˍ₋arg1,
 3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1
, 5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1
, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getin
dex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getin
dex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1,
 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)
(ˍ₋arg1, 5)), (*)(5.8, (getindex)(ˍ₋arg1, 3))), (*)(14.5, (getindex)(ˍ₋arg1
, 4))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg
1, 5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg
1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (geti
ndex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))),
 2)))), (getindex)(ˍ₋arg1, 4))
                        ˍ₋out[5] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 3)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 4))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 5))), (*)((+)
((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2
)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5
)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (
getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg
1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4))
, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((
+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getinde
x)(ˍ₋arg1, 3)), 2))), 2))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(
ˍ₋arg1, 7)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 5))), (*)(-3.3833333
333333337, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ
₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1,
 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2)))
, 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg
1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), 
(getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)
((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 3)), (*)(7.25, (getindex)(ˍ₋arg1, 4)
)), (*)(2.9, (getindex)(ˍ₋arg1, 5))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)
(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg
1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getind
ex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2)
)), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋a
rg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (get
index)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 
4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (
/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 4)), (*)(-14.5, (getindex)(ˍ₋arg1, 5
))), (*)(-5.8, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getinde
x)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex
)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))),
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋
arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)
), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋a
rg1, 4)), (*)(14.5, (getindex)(ˍ₋arg1, 5))), (*)(-2.9, (getindex)(ˍ₋arg1, 6
))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 
6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2
))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex
)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getinde
x)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)
))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 7)), (*)(-2.9, (getindex)(ˍ₋a
rg1, 5))), (*)(-7.25, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ
₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (g
etindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1
, 7)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5))
, 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getin
dex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋a
rg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))),
 2)))), (getindex)(ˍ₋arg1, 5))
                        ˍ₋out[6] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 4)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 5))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)
((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7
))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6
))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), 
(*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getinde
x)(ˍ₋arg1, 6)), 2))), 2))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 4)), 
(*)(7.25, (getindex)(ˍ₋arg1, 5))), (*)(2.9, (getindex)(ˍ₋arg1, 6))), (*)((+
)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 
7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 
5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 
6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)),
 (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getind
ex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getinde
x)(ˍ₋arg1, 7)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 8))), (*)(5.3166
66666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2)
)), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getin
dex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋a
rg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (get
index)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6
)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (
/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 8)), (*)(-2.9, (getindex)(ˍ₋arg1, 6
))), (*)(-7.25, (getindex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ
₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (ge
tindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(
ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(
ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (
getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2))))
, (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 5)), (*)(-5.8, (getindex)(ˍ₋arg1,
 7))), (*)(-14.5, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)
(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8
)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (
getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex
)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex
)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1,
 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)
(ˍ₋arg1, 7)), (*)(5.8, (getindex)(ˍ₋arg1, 5))), (*)(14.5, (getindex)(ˍ₋arg1
, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (geti
ndex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg
1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (geti
ndex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (geti
ndex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))),
 2)))), (getindex)(ˍ₋arg1, 6))
                        ˍ₋out[7] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
5.316666666666667, (getindex)(ˍ₋arg1, 7)), (*)(0.9666666666666667, (getinde
x)(ˍ₋arg1, 9))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 8))), (*)((+)(
(+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5
)), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (g
etindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), 
(/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8
)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)),
 (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex
)(ˍ₋arg1, 9)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 7)), (*
)(1.45, (getindex)(ˍ₋arg1, 9))), (*)(-7.25, (getindex)(ˍ₋arg1, 8))), (*)((+
)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 
8))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 
6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getind
ex)(ˍ₋arg1, 9)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getinde
x)(ˍ₋arg1, 5)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 6))), (*)(-5.316
666666666667, (getindex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋a
rg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 
2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6,
 (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋
arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))
), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), 
(/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 6)), (*)(-14.5, (getindex)(ˍ₋arg1, 
7))), (*)(-5.8, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ
₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(
ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(
ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6
)), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(
ˍ₋arg1, 5)), (*)(2.9, (getindex)(ˍ₋arg1, 7))), (*)(7.25, (getindex)(ˍ₋arg1,
 6))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg
1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (geti
ndex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(
ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)
), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1,
 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)
(ˍ₋arg1, 8)), (*)(5.8, (getindex)(ˍ₋arg1, 6))), (*)(14.5, (getindex)(ˍ₋arg1
, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋ar
g1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (get
index)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)
(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9
)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))),
 2)))), (getindex)(ˍ₋arg1, 7))
                        ˍ₋out[8] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-1.45, (getindex)(ˍ₋arg1, 6)), (*)(7.25, (getindex)(ˍ₋arg1, 7))), (*)(2.9, 
(getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (get
index)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 
7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)
(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (g
etindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (
getindex)(ˍ₋arg1, 9)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋ar
g1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3,
 (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)((+)((+)((
*)(5.8, (getindex)(ˍ₋arg1, 7)), (*)(-2.9, (getindex)(ˍ₋arg1, 9))), (*)(14.5
, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (g
etindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1
, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), 
(getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)),
 (getindex)(ˍ₋arg1, 9)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getinde
x)(ˍ₋arg1, 9)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex
)(ˍ₋arg1, 6)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 7))), (*)(-5.3166
66666666667, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getin
dex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)
)), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋a
rg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (g
etindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1
, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)))),
 (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 10)), (*)(-3.383333
3333333337, (getindex)(ˍ₋arg1, 9))), (*)(5.316666666666667, (getindex)(ˍ₋ar
g1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 
8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (ge
tindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((+)((
+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getinde
x)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1
, 10)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg
1, 9)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋
arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (/)((+)((+)((*)(2.9, (get
index)(ˍ₋arg1, 7)), (*)(-5.8, (getindex)(ˍ₋arg1, 9))), (*)(-14.5, (getindex
)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋
arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(
3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getinde
x)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)
((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (g
etindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(
ˍ₋arg1, 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 
9)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 10)), (*)(-2.9, 
(getindex)(ˍ₋arg1, 8))), (*)(-7.25, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/
)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)
((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (g
etindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (ge
tindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)),
 (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (ge
tindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ
₋arg1, 10)), 2))), 2)))), (getindex)(ˍ₋arg1, 8))
                        ˍ₋out[9] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 7)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 8))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)((+)
((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8
))), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 
8)), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1,
 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (g
etindex)(ˍ₋arg1, 7)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 
9)), (*)(-7.25, (getindex)(ˍ₋arg1, 10))), (*)(1.45, (getindex)(ˍ₋arg1, 11))
), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)
(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex
)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getinde
x)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 1
1)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋
arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (get
index)(ˍ₋arg1, 10)), (*)(5.8, (getindex)(ˍ₋arg1, 8))), (*)(14.5, (getindex)
(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getind
ex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋ar
g1, 10)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋ar
g1, 10)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)(0.96666666666
66667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋a
rg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋a
rg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2
))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋a
rg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10)
)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))
)), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 7)), (*)(2.9, (getindex)(ˍ₋ar
g1, 9))), (*)(7.25, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.6, (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋
arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (g
etindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (g
etindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋a
rg1, 11)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1,
 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (g
etindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋ar
g1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2
))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 8)), (*)(-5.8, (getinde
x)(ˍ₋arg1, 10))), (*)(-14.5, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)),
 (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex
)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex
)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), 
(getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (getindex)(ˍ₋
arg1, 9))
                        ˍ₋out[10] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(5.316666666666667, (getindex)(ˍ₋arg1, 10)), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 12))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 11))), (*)(
(+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2
))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋
arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg
1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋ar
g1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (/)((+)((+)((*)(-2.9, (geti
ndex)(ˍ₋arg1, 10)), (*)(1.45, (getindex)(ˍ₋arg1, 12))), (*)(-7.25, (getinde
x)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (get
index)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex
)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)),
 (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), 
(getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (
*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2)))), (/)(
(+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 9)), (*)(14.5, (getindex)(ˍ₋arg1, 10)))
, (*)(-2.9, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getinde
x)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋
arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)
), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)),
 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getin
dex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)
(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+)((*)(-1.45, 
(getindex)(ˍ₋arg1, 8)), (*)(2.9, (getindex)(ˍ₋arg1, 10))), (*)(7.25, (getin
dex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (ge
tindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10))
, (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(
0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))),
 (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ
₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*
)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)
((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 8)), (*)(3.383333333333333
7, (getindex)(ˍ₋arg1, 9))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 10))
), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 
11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)),
 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getin
dex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex
)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋ar
g1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)
(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(2.9, (g
etindex)(ˍ₋arg1, 9)), (*)(-14.5, (getindex)(ˍ₋arg1, 10))), (*)(-5.8, (getin
dex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (g
etindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getind
ex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)
), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11)))
, (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (get
index)(ˍ₋arg1, 11)), 2))), 2)))), (getindex)(ˍ₋arg1, 10))
                        ˍ₋out[11] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 9)), (*)(3.3833333333333337, (geti
ndex)(ˍ₋arg1, 10))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)(
(+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋a
rg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1
, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13))
, 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getin
dex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1,
 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))),
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ
₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)((+)((+)((*)(2.9, (get
index)(ˍ₋arg1, 10)), (*)(-5.8, (getindex)(ˍ₋arg1, 12))), (*)(-14.5, (getind
ex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex
)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10))
, (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), 
(getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 1
0)), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)),
 (getindex)(ˍ₋arg1, 12)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋ar
g1, 10)), (*)(-2.9, (getindex)(ˍ₋arg1, 12))), (*)(14.5, (getindex)(ˍ₋arg1, 
11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 1
3)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (g
etindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (get
index)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*
)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(
ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 12)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 13)), (
*)(-2.9, (getindex)(ˍ₋arg1, 11))), (*)(-7.25, (getindex)(ˍ₋arg1, 12))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 
(*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋
arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg
1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)
), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1
, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)
(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(0.966
6666666666667, (getindex)(ˍ₋arg1, 13)), (*)(-3.3833333333333337, (getindex)
(ˍ₋arg1, 12))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+
)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 
12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)
), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(
ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2)))
, 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1
, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (geti
ndex)(ˍ₋arg1, 9)), (*)(7.25, (getindex)(ˍ₋arg1, 10))), (*)(2.9, (getindex)(
ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ
₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*
)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10
)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+
)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (ge
tindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)),
 (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(
ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), 
(*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)))), (geti
ndex)(ˍ₋arg1, 11))
                        ˍ₋out[12] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 10)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 11))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 12))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getinde
x)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (get
index)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋ar
g1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getinde
x)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)((+)((+)((*)(-1.4
5, (getindex)(ˍ₋arg1, 10)), (*)(2.9, (getindex)(ˍ₋arg1, 12))), (*)(7.25, (g
etindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (ge
tindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋
arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)),
 (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))),
 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 11)), (*)(-5.8, (getindex)(
ˍ₋arg1, 13))), (*)(-14.5, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11
)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (g
etindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13)))
, (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (g
etindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (
/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 14)), (*)(-2.9, (getindex)(ˍ₋arg1, 
12))), (*)(-7.25, (getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋a
rg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)
(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getin
dex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4,
 (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)
(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 13)), 
(*)(5.8, (getindex)(ˍ₋arg1, 11))), (*)(14.5, (getindex)(ˍ₋arg1, 12))), (*)(
(+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋
arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getinde
x)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (geti
ndex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg
1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 1
3)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 14
)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 13))), (*)(5.31666666666666
7, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10))
, (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getinde
x)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋a
rg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 
2))), 2)))), (getindex)(ˍ₋arg1, 12))
                        ˍ₋out[13] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-2.9, (getindex)(ˍ₋arg1, 13)), (*)(-7.25, (getindex)(ˍ₋arg1, 14))), (*)(1.
45, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋ar
g1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋
arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 1
5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getind
ex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋
arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)),
 2))), 2))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 11)), 
(*)(3.3833333333333337, (getindex)(ˍ₋arg1, 12))), (*)(-5.316666666666667, (
getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 1
2)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1,
 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ
₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1,
 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2)))
, 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 11)), (*)(2.9, (getindex
)(ˍ₋arg1, 13))), (*)(7.25, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*
)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (geti
ndex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (
getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))
), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))
), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13))
, (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (
getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1
, 12)), (*)(-5.8, (getindex)(ˍ₋arg1, 14))), (*)(-14.5, (getindex)(ˍ₋arg1, 1
3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋a
rg1, 14)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(
ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12))
, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.3, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)
(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getin
dex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)
(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)
(ˍ₋arg1, 14)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 13))), (*)(0.96666
66666666667, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getinde
x)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 
13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋ar
g1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(
ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14))
, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (get
index)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋ar
g1, 15)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 14)), (*)(5
.8, (getindex)(ˍ₋arg1, 12))), (*)(14.5, (getindex)(ˍ₋arg1, 13))), (*)((+)((
+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1
, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋
arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)
(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 
2))), 2)))), (getindex)(ˍ₋arg1, 13))
                        ˍ₋out[14] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-2.9, (getindex)(ˍ₋arg1, 14)), (*)(1.45, (getindex)(ˍ₋arg1, 16))), (*)(-7.
25, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1
, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 1
6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getind
ex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋
arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)),
 2))), 2))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 14)), (*
)(0.9666666666666667, (getindex)(ˍ₋arg1, 16))), (*)(-3.3833333333333337, (g
etindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))
), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 
15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))),
 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 12)), (*)(7.25, (getindex
)(ˍ₋arg1, 13))), (*)(2.9, (getindex)(ˍ₋arg1, 14))), (*)((+)((+)((/)(0.3, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)
(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getin
dex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (g
etindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15)))
, (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)),
 (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (g
etindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1,
 13)), (*)(14.5, (getindex)(ˍ₋arg1, 14))), (*)(-2.9, (getindex)(ˍ₋arg1, 15)
)), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1
, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (get
index)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-
4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getinde
x)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 15)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ
₋arg1, 12)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 13))), (*)(-5.31666
6666666667, (getindex)(ˍ₋arg1, 14))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex
)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 1
4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg
1, 15)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ
₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)),
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (geti
ndex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg
1, 14)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 13)), (*)(-14
.5, (getindex)(ˍ₋arg1, 14))), (*)(-5.8, (getindex)(ˍ₋arg1, 15))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1
, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋
arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)
(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 
2))), 2)))), (getindex)(ˍ₋arg1, 14))
                        ˍ₋out[15] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(5.8, (getindex)(ˍ₋arg1, 14)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))), (*)(14.5
, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)),
 (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))),
 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2
))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))
), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)
(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)(1.45, (get
index)(ˍ₋arg1, 17)), (*)(-2.9, (getindex)(ˍ₋arg1, 15))), (*)(-7.25, (getind
ex)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getinde
x)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)
), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16))
, (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))
, (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 
16))), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (get
index)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)))
), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 13)), (*)(3.3833
333333333337, (getindex)(ˍ₋arg1, 14))), (*)(-5.316666666666667, (getindex)(
ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (
*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (g
etindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))
), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getinde
x)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)
), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (
/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 14)), (*)(-5.8, (getindex)(ˍ₋arg1, 1
6))), (*)(-14.5, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex
)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋ar
g1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(
ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)
(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(
ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))), (/)((+)((+
)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 17)), (*)(-3.3833333333333337,
 (getindex)(ˍ₋arg1, 16))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 15))),
 (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getinde
x)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg
1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (ge
tindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (geti
ndex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*
)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(
ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (get
index)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)
(-1.45, (getindex)(ˍ₋arg1, 13)), (*)(7.25, (getindex)(ˍ₋arg1, 14))), (*)(2.
9, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 
2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex
)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 
13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getinde
x)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 
2))), 2)))), (getindex)(ˍ₋arg1, 15))
                        ˍ₋out[16] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 14)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 15))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 16))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ
₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 1
5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getind
ex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (get
index)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋ar
g1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getinde
x)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)((+)((+)((*)(0.96
66666666666667, (getindex)(ˍ₋arg1, 18)), (*)(-3.3833333333333337, (getindex
)(ˍ₋arg1, 17))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 16))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋a
rg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)
(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋
arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (ge
tindex)(ˍ₋arg1, 17)), (*)(5.8, (getindex)(ˍ₋arg1, 15))), (*)(14.5, (getinde
x)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (g
etindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (geti
ndex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
6)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 
16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ
₋arg1, 14)), (*)(2.9, (getindex)(ˍ₋arg1, 16))), (*)(7.25, (getindex)(ˍ₋arg1
, 15))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(
ˍ₋arg1, 17)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋a
rg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(
-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), 
(*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (ge
tindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋a
rg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(
-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)
((+)((*)(1.45, (getindex)(ˍ₋arg1, 18)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))),
 (*)(-7.25, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋a
rg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 1
4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg
1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ
₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)),
 (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (geti
ndex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg
1, 18)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 15)), (*)(-5.
8, (getindex)(ˍ₋arg1, 17))), (*)(-14.5, (getindex)(ˍ₋arg1, 16))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1,
 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)
(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 
2))), 2)))), (getindex)(ˍ₋arg1, 16))
                        ˍ₋out[17] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 15)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 16))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 17))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ
₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 1
6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getind
ex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex
)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋ar
g1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getinde
x)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 18)), (*)(5.8, (getindex)(ˍ₋arg1, 16))), (*)(14.5, (ge
tindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (get
index)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 1
8))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1,
 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(0.966666666666
6667, (getindex)(ˍ₋arg1, 19)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 
18))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16
)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (g
etindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (geti
ndex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
7)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18)))
, (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ
₋arg1, 15)), (*)(2.9, (getindex)(ˍ₋arg1, 17))), (*)(7.25, (getindex)(ˍ₋arg1
, 16))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1,
 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, 
(getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (g
etindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getinde
x)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (ge
tindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋a
rg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(
-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (/)((+)
((+)((*)(2.9, (getindex)(ˍ₋arg1, 16)), (*)(-5.8, (getindex)(ˍ₋arg1, 18))), 
(*)(-14.5, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋ar
g1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15
)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1
, 18)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 
19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (
getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1
, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (get
index)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(
1.45, (getindex)(ˍ₋arg1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 17))), (*)(-7.2
5, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 
2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex
)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 
17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 
2))), 2)))), (getindex)(ˍ₋arg1, 17))
                        ˍ₋out[18] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 16)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 17))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 18))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19))
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 2
0)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex
)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋ar
g1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getinde
x)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 18)), (*)(-7.25, (getindex)(ˍ₋arg1, 19))), (*)(1.45, (
getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 1
7)), (getindex)(ˍ₋arg1, 19)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1,
 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋
arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1,
 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 19)), (*)(
5.316666666666667, (getindex)(ˍ₋arg1, 18))), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getind
ex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)
), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2)), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)
), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))
), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1
, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))
), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))
)), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 19)), (*)(5.8, (getindex)(ˍ₋ar
g1, 17))), (*)(14.5, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.3, (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (geti
ndex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(
ˍ₋arg1, 16)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getind
ex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (ge
tindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+
)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 16)), (*)(2.9, (getindex)(ˍ₋arg1, 18)))
, (*)(7.25, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 1
6)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg
1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ
₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)
(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg
1, 16)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 17)), (*)(-5.
8, (getindex)(ˍ₋arg1, 19))), (*)(-14.5, (getindex)(ˍ₋arg1, 18))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋ar
g1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 
2))), 2)))), (getindex)(ˍ₋arg1, 18))
                        ˍ₋out[19] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 17)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 18))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 19))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋ar
g1, 21)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 19)), (*)(1.45, (getindex)(ˍ₋arg1, 21))), (*)(-7.25, (
getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 1
8)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1,
 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋
arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19))
, (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2)))
, 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 19)), (*)(0.
9666666666666667, (getindex)(ˍ₋arg1, 21))), (*)(-3.3833333333333337, (getin
dex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)
), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)
), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1
, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (ge
tindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2))
)), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 17)), (*)(7.25, (getindex)(ˍ₋
arg1, 18))), (*)(2.9, (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((/)(0.1, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)
(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getin
dex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (g
etindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)
(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getin
dex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 18)
), (*)(14.5, (getindex)(ˍ₋arg1, 19))), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), 
(*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex
)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1
, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (
getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ
₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg
1, 20)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 18)), (*)(-14
.5, (getindex)(ˍ₋arg1, 19))), (*)(-5.8, (getindex)(ˍ₋arg1, 20))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋
arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 
2))), 2)))), (getindex)(ˍ₋arg1, 19))
                        ˍ₋out[20] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(5.8, (getindex)(ˍ₋arg1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 21))), (*)(14.5
, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 
20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))),
 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2
))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex
)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋
arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)((+)((+)((*)(1.45, (get
index)(ˍ₋arg1, 22)), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), (*)(-7.25, (getind
ex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21))
, (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2)))
, (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1,
 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21)))
, (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)))
), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 18)), (*)(7.25, (getindex)(ˍ₋a
rg1, 19))), (*)(2.9, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, 
(getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(
ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (ge
tindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)
(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getind
ex)(ˍ₋arg1, 18)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 19))), (*)(-5.
316666666666667, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (get
index)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋ar
g1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(
ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getind
ex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, 
(getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(
ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 19)), (*
)(-5.8, (getindex)(ˍ₋arg1, 21))), (*)(-14.5, (getindex)(ˍ₋arg1, 20))), (*)(
(+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getinde
x)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ
₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getinde
x)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (geti
ndex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg
1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 2
1)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 2
1)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 22))), (*)(5.31666666666666
7, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1,
 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getinde
x)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋a
rg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 
2))), 2)))), (getindex)(ˍ₋arg1, 20))
                        ˍ₋out[21] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-2.9, (getindex)(ˍ₋arg1, 21)), (*)(-7.25, (getindex)(ˍ₋arg1, 22))), (*)(1.
45, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋ar
g1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1,
 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 2
3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋
arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)),
 2))), 2))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 21)), (*
)(-3.3833333333333337, (getindex)(ˍ₋arg1, 22))), (*)(0.9666666666666667, (g
etindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋
arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 
22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))),
 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 19)), (*)(2.9, (getindex)
(ˍ₋arg1, 21))), (*)(7.25, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22)))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (g
etindex)(ˍ₋arg1, 19)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 20))), (*
)(-5.316666666666667, (getindex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)
(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)
), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), 
(getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getin
dex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (g
etindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), 
(getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getin
dex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 20)
), (*)(-14.5, (getindex)(ˍ₋arg1, 21))), (*)(-5.8, (getindex)(ˍ₋arg1, 22))),
 (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getind
ex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 
22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (get
index)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, 
(getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(
ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 22)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 22)), (*)(5
.8, (getindex)(ˍ₋arg1, 20))), (*)(14.5, (getindex)(ˍ₋arg1, 21))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋a
rg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)
(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 
2))), 2)))), (getindex)(ˍ₋arg1, 21))
                        ˍ₋out[22] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 20)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 21))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 22))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23))
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getinde
x)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex
)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋ar
g1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2
))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getinde
x)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)((+)((+)((*)(0.96
66666666666667, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (getindex)(
ˍ₋arg1, 22))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1,
 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 2
0)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2
))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋a
rg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (g
etindex)(ˍ₋arg1, 20)), (*)(7.25, (getindex)(ˍ₋arg1, 21))), (*)(2.9, (getind
ex)(ˍ₋arg1, 22))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getinde
x)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22))
, (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (
^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22)))
, (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1,
 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1,
 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2)))
), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 21)), (*)(14.5, (getindex)(ˍ₋arg
1, 22))), (*)(-2.9, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getin
dex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ
₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(
3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (get
index)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getinde
x)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
2)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+)
((+)((*)(1.45, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getindex)(ˍ₋arg1, 22))),
 (*)(-7.25, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 2
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg
1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1,
 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, 
(getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg
1, 24)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 21)), (*)(-14
.5, (getindex)(ˍ₋arg1, 22))), (*)(-5.8, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋a
rg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋ar
g1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (get
index)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 
2))), 2)))), (getindex)(ˍ₋arg1, 22))
                        ˍ₋out[23] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-3.3833333333333337, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (geti
ndex)(ˍ₋arg1, 23))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 25))), (*)(
(+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getinde
x)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ
₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋ar
g1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25
)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg
1, 24)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex
)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)((+)((+)((*)(-1.45
, (getindex)(ˍ₋arg1, 21)), (*)(7.25, (getindex)(ˍ₋arg1, 22))), (*)(2.9, (ge
tindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23)))
, (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 2
4))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋a
rg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 2
3))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 
2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 23)), (*)(-7.25, (getindex)
(ˍ₋arg1, 24))), (*)(1.45, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*
)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getin
dex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (g
etindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (get
index)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24
)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (g
etindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (g
etindex)(ˍ₋arg1, 21)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 22))), (*
)(-5.316666666666667, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3,
 (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)
(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getinde
x)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23))
, (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*
)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getin
dex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 22)
), (*)(-5.8, (getindex)(ˍ₋arg1, 24))), (*)(-14.5, (getindex)(ˍ₋arg1, 23))),
 (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (ge
tindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 2
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg
1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (ge
tindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (geti
ndex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(
ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋ar
g1, 24)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 24)), (*)(5
.8, (getindex)(ˍ₋arg1, 22))), (*)(14.5, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋
arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1
, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 2
3)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2
))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 
2))), 2)))), (getindex)(ˍ₋arg1, 23))
                        ˍ₋out[24] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 22)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 23))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 24))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ
₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 2
6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋ar
g1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getinde
x)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 24)), (*)(1.45, (getindex)(ˍ₋arg1, 26))), (*)(-7.25, (
getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (g
etindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1,
 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ
₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2)))
, 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 23)), (*)(14.5, (getindex)
(ˍ₋arg1, 24))), (*)(-2.9, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), 
(getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getin
dex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex
)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)),
 (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (g
etindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (
/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 22)), (*)(2.9, (getindex)(ˍ₋arg1, 
24))), (*)(7.25, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex
)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋ar
g1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1,
 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, 
(getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getind
ex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (geti
ndex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(
ˍ₋arg1, 22)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 23)), (*
)(-14.5, (getindex)(ˍ₋arg1, 24))), (*)(-5.8, (getindex)(ˍ₋arg1, 25))), (*)(
(+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋
arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋ar
g1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26
)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg
1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 2
5)), 2))), 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 24)
), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 26))), (*)(-3.383333333333333
7, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22))
, (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2)))
, 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋a
rg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getinde
x)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 
24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 
2))), 2)))), (getindex)(ˍ₋arg1, 24))
                        ˍ₋out[25] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-1.45, (getindex)(ˍ₋arg1, 23)), (*)(7.25, (getindex)(ˍ₋arg1, 24))), (*)(2.
9, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1,
 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex
)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋a
rg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 
2))), 2))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getind
ex)(ˍ₋arg1, 26))), (*)(14.5, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)),
 (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (ge
tindex)(ˍ₋arg1, 25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)),
 (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (
getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2
))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)),
 (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))))
, (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 23)), (*)(3.38333
33333333337, (getindex)(ˍ₋arg1, 24))), (*)(-5.316666666666667, (getindex)(ˍ
₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋
arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)
(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2)), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)),
 (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (ge
tindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (ge
tindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (/
)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 24)), (*)(-5.8, (getindex)(ˍ₋arg1, 26
))), (*)(-14.5, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)
(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg
1, 27)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(
-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋
arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), 
(getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getinde
x)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
5)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ
₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)),
 (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)
((*)(1.45, (getindex)(ˍ₋arg1, 27)), (*)(-2.9, (getindex)(ˍ₋arg1, 25))), (*)
(-7.25, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1,
 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)),
 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (get
index)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getinde
x)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg
1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (ge
tindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋a
rg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 2
7)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 27
)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 26))), (*)(5.31666666666666
7, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1,
 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex
)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 
25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 
2))), 2)))), (getindex)(ˍ₋arg1, 25))
                        ˍ₋out[26] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 24)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 25))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 26))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 2
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getind
ex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (get
index)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2)))
, 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24
)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ
₋arg1, 27)), (*)(5.8, (getindex)(ˍ₋arg1, 25))), (*)(14.5, (getindex)(ˍ₋arg1
, 26))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ
₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)),
 (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)), (getinde
x)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
6)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), 
(*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))
[30]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27
)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 24)), (*)(2.9, (
getindex)(ˍ₋arg1, 26))), (*)(7.25, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/
)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)
), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1,
 25)), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋ar
g1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(
-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getind
ex)(ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)((*)(1.45, var"(u(t))[30]"), (*)(
-2.9, (getindex)(ˍ₋arg1, 26))), (*)(-7.25, (getindex)(ˍ₋arg1, 27))), (*)((+
)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2
))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)
(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getind
ex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2
))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26
)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u
(t))[30]"), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 25)), (*)(
-5.8, (getindex)(ˍ₋arg1, 27))), (*)(-14.5, (getindex)(ˍ₋arg1, 26))), (*)((+
)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2
))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)
(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getind
ex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2
))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)),
 (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), 2))))
, (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 27)), (*)(0.96666
66666666667, var"(u(t))[30]")), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 2
6))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋ar
g1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (g
etindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)), (getindex)(
ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26))
, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)
(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30
]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 
26)), var"(u(t))[30]"), 2))), 2)))), (getindex)(ˍ₋arg1, 26))
                        ˍ₋out[27] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(0.9666666666666667, (getindex)(ˍ₋arg1, 29)), (*)(5.316666666666667, (getin
dex)(ˍ₋arg1, 27))), (*)(-3.3833333333333337, var"(u(t))[30]")), (*)((+)((+)
((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[30]"), (
getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)), (/)(0.3, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26))
, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (get
index)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋
arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)
(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2))), 2))), (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 
27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2))), 2
))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 25)), (*)(3.38
33333333333337, (getindex)(ˍ₋arg1, 26))), (*)(-5.316666666666667, (getindex
)(ˍ₋arg1, 27))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)
(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), 
(*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2)), (/)(0
.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[30]"), (getind
ex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))), (/)(0.3, (^)((
+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)
(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg
1, 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getin
dex)(ˍ₋arg1, 26)), (*)(-14.5, (getindex)(ˍ₋arg1, 27))), (*)(-5.8, var"(u(t)
)[30]")), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1
, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4,
 (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2)), (/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[30]"), (getindex)(ˍ₋a
rg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (
getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1
, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[30]"), (get
index)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)))), (/)((+)((+
)((*)(-2.9, var"(u(t))[30]"), (*)(5.8, (getindex)(ˍ₋arg1, 26))), (*)(14.5, 
(getindex)(ˍ₋arg1, 27))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((*)(-1, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), v
ar"(u(t))[30]"), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(
ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (
*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"), (
getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋a
rg1, 29)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u
(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2
)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 25)), (*)(2.9, (getindex)(ˍ
₋arg1, 27))), (*)(7.25, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[30]"), (getindex)(ˍ₋ar
g1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (g
etindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ
₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1,
 25)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t)
)[30]")), (getindex)(ˍ₋arg1, 29)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (
getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2
)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 29)), (*)(-2.9, (getindex)(ˍ
₋arg1, 27))), (*)(-7.25, var"(u(t))[30]")), (*)((+)((+)((/)(0.1, (^)((+)((+
)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getinde
x)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋a
rg1, 25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, v
ar"(u(t))[30]"), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]"
)), (getindex)(ˍ₋arg1, 29)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋a
rg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(
-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2))), 2)))), (getindex)(ˍ₋a
rg1, 27))
                        ˍ₋out[28] = (+)((+)((+)((+)((+)((*)(0.2, var"(u(t))
[1]"), (*)(-0.2, (getindex)(ˍ₋arg1, 4))), (*)(-1, (getindex)(ˍ₋arg1, 28))),
 (*)(2.0, (getindex)(ˍ₋arg1, 1))), (*)(-2.0, (getindex)(ˍ₋arg1, 2))), (geti
ndex)(ˍ₋arg1, 3))
                        ˍ₋out[29] = (+)((+)((+)((+)((+)((*)(-0.2, (getindex
)(ˍ₋arg1, 24)), (*)(-1, var"(u(t))[30]")), (*)(-2.0, (getindex)(ˍ₋arg1, 26)
)), (*)(2.0, (getindex)(ˍ₋arg1, 27))), (*)(0.2, (getindex)(ˍ₋arg1, 29))), (
getindex)(ˍ₋arg1, 25))
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), [1.0 0.0 … 0.0 0.0; 0.0 1.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.
0 … 0.0 0.0], nothing, nothing, nothing, nothing, nothing, nothing, nothing
, nothing, nothing, nothing, [Symbol("getindex(u(t), 3)"), Symbol("getindex
(u(t), 4)"), Symbol("getindex(u(t), 5)"), Symbol("getindex(u(t), 6)"), Symb
ol("getindex(u(t), 7)"), Symbol("getindex(u(t), 8)"), Symbol("getindex(u(t)
, 9)"), Symbol("getindex(u(t), 10)"), Symbol("getindex(u(t), 11)"), Symbol(
"getindex(u(t), 12)")  …  Symbol("getindex(u(t), 22)"), Symbol("getindex(u(
t), 23)"), Symbol("getindex(u(t), 24)"), Symbol("getindex(u(t), 25)"), Symb
ol("getindex(u(t), 26)"), Symbol("getindex(u(t), 27)"), Symbol("getindex(u(
t), 28)"), Symbol("getindex(u(t), 29)"), Symbol("getindex(u(t), 2)"), Symbo
l("getindex(u(t), 31)")], :t, nothing, ModelingToolkit.var"#472#generated_o
bserved#471"{Bool, ModelingToolkit.ODESystem, Dict{Any, Any}}(false, Core.B
ox(Symbolics.Equation[(u(t))[30] ~ 1.0666666666666667 / (1 + t) + 0.3333333
333333333(u(t))[29] - 0.06666666666666667(u(t))[28] - 0.3333333333333333(u(
t))[31], (u(t))[1] ~ (u(t))[3] - 3.0(u(t))[2] - 0.2(u(t))[4]]), ModelingToo
lkit.ODESystem(Symbolics.Equation[Differential(t)((u(t))[3]) ~ ((3.38333333
33333337(u(t))[2] - 0.9666666666666667(u(t))[1] - 5.316666666666667(u(t))[3
]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) +
 (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t
))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[
4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (
u(t))[1] - 4(u(t))[2])^2))^2)) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[
4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) 
+ (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(
t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))
[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 +
 (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(
u(t))[3])^2))^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3
(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^
2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (1
3//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(
u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 
2(u(t))[4])^2))^2)) + (2.9(u(t))[3] + 7.25(u(t))[2] - 1.45(u(t))[1]) / ((0.
3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*(
(3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2)
)^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + 
(13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] 
- 4(u(t))[2])^2))^2)) + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(
t))[5] - 3.3833333333333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t
))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//
12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5
] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t)
)[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(
t))[2] - 14.5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t
))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(
t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13/
/12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[
5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (1
3//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)))*(u(t))[3], Differenti
al(t)((u(t))[4]) ~ ((7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3
(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (1
3//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*((
(u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 
4(u(t))[3])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((
3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))
^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2
))^2)) + (3.3833333333333337(u(t))[3] - 0.9666666666666667(u(t))[2] - 5.316
666666666667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4
] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3]
 + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + 
(u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1/
/4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (0.9666666666666667(u(
t))[6] + 5.316666666666667(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3
(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (1
3//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(
u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 
2(u(t))[5])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1
 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((
3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))
^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2
))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] +
 (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(
t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u
(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + 
(u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])
^2))^2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((0.9666666666666667(u(t)
)[7] + 5.316666666666667(u(t))[5] - 3.3833333333333337(u(t))[6]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[
3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1/
/4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(
u(t))[6])^2))^2)) + (3.3833333333333337(u(t))[4] - 0.9666666666666667(u(t))
[3] - 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] 
+ (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((
(u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 
4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4]
)^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[
4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] 
- (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] -
 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//1
2)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t
))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])
^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-
6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3]
 + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] +
 (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13/
/12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[7] - 2.9(u
(t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[
3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[
4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5]
 + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (
1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[4] - 5.8(
u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))
[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))
[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[
6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t
))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[5], Differential(t)((u(t))[
6]) ~ ((3.3833333333333337(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.31666
6666666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] -
 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] +
 (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u
(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//1
2)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t
))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] 
- 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (
u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(
u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5]
)^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] 
- 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4
(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.
0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.316666666666667(u(t))[6] + 0.966
6666666666667(u(t))[8] - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u
(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t)
)[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t
))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u
(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2
))^2)) + (2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2
(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(
t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u
(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + 
(u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])
^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6
 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 
2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u
(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((
u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - 
(u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(
t))[6], Differential(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.9666
666666666667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t
))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[
8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))
[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(
t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))
^2)) + (0.9666666666666667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.383333
3333333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2
) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 
+ (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] +
 (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u
(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//1
2)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t
))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-
6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7]
 + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + 
(u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1/
/4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[6] - 14.5(u
(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9
(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//1
2)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5]
 - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 
4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1
.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[
8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) /
 ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[
6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] 
+ (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8
])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])
^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t)
)[9] - 2(u(t))[8])^2))^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ ((3.383
3333333333337(u(t))[7] - 0.9666666666666667(u(t))[6] - 5.316666666666667(u(
t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9]
)^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6
] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - 
(u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.
0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (7.25(u(t))[7] + 2.9(u(t))[8] - 1.4
5(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t)
)[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))
[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6]
 - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u
(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (0.9666666666666667(u(t))[10] +
 5.316666666666667(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e
-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[
8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] 
- (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)
*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(
t))[9])^2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3
(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2
(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (
13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10]
 - 4(u(t))[9])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((
0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4
)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8
] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2
) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4
)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[
8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0
e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))
[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7]
 - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12
)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[
7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))
)*(u(t))[8], Differential(t)((u(t))[9]) ~ ((5.316666666666667(u(t))[9] + 0.
9666666666666667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] 
+ (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))
[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//
12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] -
 4(u(t))[10])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / 
((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1
//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t
))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[1
0])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] 
+ (u(t))[11] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[8] - 0.9666
666666666667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (
u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u
(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((
u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] 
+ (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8
])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0
e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t)
)[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t
))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13/
/12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2
))^2)) + (2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (
u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)
*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t
))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(
t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(
u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + 
(13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(
((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9
])^2))^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((7.25(u(t))[9] + 2.9(
u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t
))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2
) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11]
 - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(
t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (5.8(
u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] 
- 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))
[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(
t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (3
.3833333333333337(u(t))[9] - 0.9666666666666667(u(t))[8] - 5.31666666666666
7(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t
))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t
))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (
1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (0.9666666666666667
(u(t))[12] + 5.316666666666667(u(t))[10] - 3.3833333333333337(u(t))[11]) / 
((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1/
/4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//
12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u
(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t
))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0
e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t
))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] 
- 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 
2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] 
+ (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t)
)[11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*((
(u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t))
[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[1
0] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))
[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4
(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))
[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))
[10], Differential(t)((u(t))[11]) ~ ((3.3833333333333337(u(t))[10] - 0.9666
666666666667(u(t))[9] - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + (
13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] +
 (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (
u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13/
/12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9
] - 4(u(t))[10])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]
) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) 
+ (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] 
- 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12
)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (5.8(u(t))[10] + 14.5(
u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t)
)[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)
*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t)
)[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2)
 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.316666666
666667(u(t))[11] + 0.9666666666666667(u(t))[13] - 3.3833333333333337(u(t))[
12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))
[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))
[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2)
)^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13/
/12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[11] + 7.
25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u
(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//
12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u
(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11]
 - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)
) + (2.9(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (
13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] +
 (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (
u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13/
/12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[1
1])^2))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ ((5.316666666666667(
u(t))[12] + 0.9666666666666667(u(t))[14] - 3.3833333333333337(u(t))[13]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))
[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 
4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] -
 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*(
(3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (1.45(u(t))[14] - 2.9(u(
t))[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))
[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*(
(3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t)
)[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] 
- 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)
) + (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 
2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] -
 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (
1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(
((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))
[12])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + 
(u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))
[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t)
)[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e
-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t)
)[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[11] -
 0.9666666666666667(u(t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t)
)[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t
))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])
^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13]
)^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12]
 + (u(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.
8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (1
3//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] 
+ (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12]
 + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t
))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*
(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Differenti
al(t)((u(t))[22]) ~ ((5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//
12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u
(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u
(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(
t))[23] - 2(u(t))[22])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] - 7.25(u(t
))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21
])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(
t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(
t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23
])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) +
 (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (7.25(u(t))[21
] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[2
2] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(
u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[2
2] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u
(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[2
1])^2))^2)) + (3.3833333333333337(u(t))[21] - 0.9666666666666667(u(t))[20] 
- 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + 
(u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))
[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13/
/12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + 
(u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[
20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2
))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))
[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2)
)^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2)
 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1/
/4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(
u(t))[22])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.316666666666667(u(t)
)[22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 
2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2)
 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))
[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + 
(u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))
[23])^2))^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~ ((1.45(u(t))[25] -
 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] -
 (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (
1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] 
+ (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t)
)[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])
^2))^2)) + (5.316666666666667(u(t))[23] + 0.9666666666666667(u(t))[25] - 3.
3833333333333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t
))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)
*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(
t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25]
 - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^
2)) + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24]
 - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23
] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) +
 (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u
(t))[21] - 4(u(t))[22])^2))^2)) + (3.3833333333333337(u(t))[22] - 0.9666666
666666667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(
u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2
(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13/
/12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[
21] - 4(u(t))[22])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.8(u(t))[24
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((
u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[2
1] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[2
5] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2)
)^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[2
2] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.8(u(t))[22] + 14.5(u(t))[23] - 
2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + 
(13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23
] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23
] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u
(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12
)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[23], Differentia
l(t)((u(t))[24]) ~ ((3.3833333333333337(u(t))[23] - 0.9666666666666667(u(t)
)[22] - 5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
3] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2)
 + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6
 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[
24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + 
(u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[
23])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.316666666666667(u(t))[24] 
- 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] 
+ (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t)
)[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t
))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] +
 (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t)
)[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^
2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / ((0.1 / ((1.0
e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t
))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(
t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] 
- 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^
2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] 
+ (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t))[24] - 2.9
(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t
))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*
((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t)
)[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(
((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[26] - 2.9(u(t
))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[
25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((
3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))
[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] -
 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2))
 + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2
(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 
2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1
//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[
24])^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ ((5.316666666666667
(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.3833333333333337(u(t))[26]) /
 ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (
13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25]
 + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] 
- (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*
((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (7.25(u(t))[24] + 2.9(u
(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t
))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26
])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t
))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] 
- 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2
)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23
] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24]
 - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2
) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) +
 (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//1
2)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(
t))[27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t))[24] - 0.96666666
66666667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (
u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u
(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//
4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3(
u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[2
5] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5(u(t))[25]
) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) 
+ (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26
] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[2
7] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))
^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24
] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t))[25] - 2
.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(
t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.
1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4
)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(
t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)
*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[25], Differential
(t)((u(t))[26]) ~ ((3.3833333333333337(u(t))[25] - 0.9666666666666667(u(t))
[24] - 5.316666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[
24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(
u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2
(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[2
5] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (
u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[2
5])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / (
(1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3
(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[
28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[2
7])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[
26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26] -
 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2
(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 
0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1/
/4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(
u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//1
2)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] + 7.25
(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (
u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[2
5])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[
27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u
(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))
^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[2
6] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(
u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) +
 (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4
)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(
t))[26])^2))^2)) + (5.316666666666667(u(t))[26] + 0.9666666666666667(u(t))[
28] - 3.3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[
24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(
u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2
(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[2
5] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (
u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[2
7])^2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ ((7.25(u(t))[26] + 2
.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + 
(u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))
[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13
//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + 
(u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[
25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2
))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0.3 / ((1.0e-
6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))
[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2
) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1/
/4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(
u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[26] - 0.9666666666666667(u(t
))[25] - 5.316666666666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 
4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 
4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))
[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + 
(u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))
[26])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.3 / 
((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((
3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))
[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[
28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-
6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[2
8] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[29] - 2.9(u(t))[27] - 7.25(u(t))[28
]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2
) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))
[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2)
)^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1/
/4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (0.9666666666666667
(u(t))[29] + 5.316666666666667(u(t))[27] - 3.3833333333333337(u(t))[28]) / 
((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (1
3//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] -
 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*(
(3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)))*(u(t))[27], Differential(
t)((u(t))[28]) ~ ((3.3833333333333337(u(t))[27] - 0.9666666666666667(u(t))[
26] - 5.316666666666667(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27]
 - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28
] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(
t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27
])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9(u(t))[29]) / ((0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u
(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29]
)^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 +
 (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2))^2)) + (2.9(u(t))[28] + 7.25(u(t))[27] - 1.45(u(t))[26]) 
/ ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] 
- 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12
)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[30] - 2.9(
u(t))[28] - 7.25(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t
))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12
)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(
t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30]
 - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^
2)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))[28]) / ((0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] 
- 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2
) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + 
(13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)
*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t
))[28])^2))^2)) + (0.9666666666666667(u(t))[30] + 5.316666666666667(u(t))[2
8] - 3.3833333333333337(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28
] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u
(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + 
(13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28
] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(
t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29
])^2))^2)))*(u(t))[28], Differential(t)((u(t))[29]) ~ ((0.9666666666666667(
u(t))[31] + 5.316666666666667(u(t))[29] - 3.3833333333333337(u(t))[30]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[
28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4
(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 
2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((
3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2)) + (3.3833333333333337(u(t))
[28] - 0.9666666666666667(u(t))[27] - 5.316666666666667(u(t))[29]) / ((0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*
((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t)
)[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t
))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0
e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t
))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (2.9(u(t))[28] - 14.5(u(t))[29
] - 5.8(u(t))[30]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t)
)[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] -
 4(u(t))[30])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13
//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)) + (5.8(u(t))[28] + 1
4.5(u(t))[29] - 2.9(u(t))[30]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (
u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1/
/4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13
//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + 
(u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[3
0])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)) + (2.9(u
(t))[29] + 7.25(u(t))[28] - 1.45(u(t))[27]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[2
9])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[
28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3
(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4
(u(t))[28])^2))^2)) + (1.45(u(t))[31] - 2.9(u(t))[29] - 7.25(u(t))[30]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1
//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2
(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 
2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((
3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2)))*(u(t))[29], 0 ~ 0.2(u(t))[
1] + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - (u(t))[2] - 2.0(u(t))[4], 0 
~ 2.0(u(t))[29] + 0.2(u(t))[31] + (u(t))[27] - 0.2(u(t))[26] - (u(t))[30] -
 2.0(u(t))[28]], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[3], (u(t))[4],
 (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[
11], (u(t))[12]  …  (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[
26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[2], (u(t))[31]], Any[], Dic
t{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[30] ~ 1.066666666
6666667 / (1 + t) + 0.3333333333333333(u(t))[29] - 0.06666666666666667(u(t)
)[28] - 0.3333333333333333(u(t))[31], (u(t))[1] ~ (u(t))[3] - 3.0(u(t))[2] 
- 0.2(u(t))[4]], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[]), Bas
e.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Mat
rix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matr
ix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matri
x{Symbolics.Num}(undef, 0, 0)), :pdesys1, ModelingToolkit.ODESystem[], Dict
{Any, Any}((u(t))[17] => 0.5344827586206896, (u(t))[18] => 0.56896551724137
93, (u(t))[8] => 0.22413793103448276, (u(t))[10] => 0.29310344827586204, (u
(t))[27] => 0.8793103448275862, (u(t))[28] => 0.9137931034482759, (u(t))[2]
 => 0.017241379310344827, (u(t))[24] => 0.7758620689655172, (u(t))[30] => 0
.9827586206896551, (u(t))[21] => 0.6724137931034483…), nothing, nothing, no
thing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicC
ontinuousCallback(Symbolics.Equation[], Symbolics.Equation[])], ModelingToo
lkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}(), Met
hodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}, MethodOfLine
s.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.Scalariz
edDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{Any}, MethodOfL
ines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1, MethodOfLi
nes.EdgeAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUtils.
Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sym{
Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Float64}}(x => (0.
0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{Tup
le, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{Data
Type, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, R
eal}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType
, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.Immutable
Dict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.Immutabl
eDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))
[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t
))[9], (u(t))[10]  …  (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t)
)[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30], (u(t))[31]]), Dict{S
ymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Flo
at64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}}(x
 => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.Immuta
bleDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}
, Base.TwicePrecision{Float64}, Int64}}(x => -0.017241379310344827:0.034482
758620689655:1.0172413793103448), Dict{SymbolicUtils.Sym{Real, Base.Immutab
leDict{DataType, Any}}, Float64}(x => 0.034482758620689655), Dict{SymbolicU
tils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tup
le{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{SymbolicU
tils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tup
le{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((31,)))), MethodOfLines
.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.Scalarize
dDiscretization}(Dict{Symbolics.Num, Int64}(x => 29), t, 2, MethodOfLines.W
ENOScheme(1.0e-6), MethodOfLines.EdgeAlignedGrid(), true, false, MethodOfLi
nes.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedT
uple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equation[Differe
ntial(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equati
on[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + t)], Symbolics.VarD
omainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolics.VarDomainP
airing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBas
e.NullParameters(), Dict{Any, Any}(), nothing, Any[], :pdesys1, nothing), f
alse, Base.RefValue{Any}(nothing)), ModelingToolkit.SystemStructures.Tearin
gState{ModelingToolkit.ODESystem}(ModelingToolkit.ODESystem(Symbolics.Equat
ion[Differential(t)((u(t))[3]) ~ ((3.3833333333333337(u(t))[2] - 0.96666666
66666667(u(t))[1] - 5.316666666666667(u(t))[3]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[
1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^
2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6
 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] 
+ (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[
3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2))
 + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//
12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))
[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])
^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3]
 + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4
])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (1.45(u(t)
)[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))
[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t)
)[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//1
2)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5]
 - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))
[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t
))[3] + 7.25(u(t))[2] - 1.45(u(t))[1]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t
))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(
t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13/
/12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[
5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(
t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2)) + (5.316
666666666667(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.3833333333333337(u(
t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])
^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 
2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u
(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e
-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3
] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[2] - 14.5(u(t))[3] - 5.8(u
(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2]
)^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] -
 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(
u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4]
 - 2(u(t))[3])^2))^2)))*(u(t))[3], Differential(t)((u(t))[4]) ~ ((7.25(u(t)
)[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))
[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t)
)[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//1
2)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6]
 - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t)
)[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (5.8(u(t
))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t
))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//
12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6
] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13
//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (3.3833333333333337(u
(t))[3] - 0.9666666666666667(u(t))[2] - 5.316666666666667(u(t))[4]) / ((0.1
 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((
3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))
^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] -
 4(u(t))[3])^2))^2)) + (0.9666666666666667(u(t))[6] + 5.316666666666667(u(t
))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))
[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t)
)[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//1
2)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6]
 - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))
[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t
))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t
))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//
12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*
((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6
] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13
//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[6] - 2.9(
u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t)
)[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))
[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4]
 + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[4], Different
ial(t)((u(t))[5]) ~ ((0.9666666666666667(u(t))[7] + 5.316666666666667(u(t))
[5] - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] 
- (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] -
 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (3.3833333
333333337(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.316666666666667(u(t))[
5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t)
)[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + 
(u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))
[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((
u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t
))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2
(u(t))[5])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (
u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t
))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))
^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + 
(1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] -
 2(u(t))[4])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) 
+ (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7]
 - 4(u(t))[6])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12
)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2)
 + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5]
)^2))^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~ ((3.3833333333333337(u(t
))[5] - 0.9666666666666667(u(t))[4] - 5.316666666666667(u(t))[6]) / ((0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((
u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2
) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13
//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u
(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2
(u(t))[5])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*((
(u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^
2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (1
3//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u
(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2)
)^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t
))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(
t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (
u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^
2))^2)) + (5.316666666666667(u(t))[6] + 0.9666666666666667(u(t))[8] - 3.383
3333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7]
)^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4
] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] +
 (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7]
)^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13
//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[6] + 7.25(
u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[
7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))
[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6]
 + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[
7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t))[5] + 14.
5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))
[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t)
)[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6
] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))
[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(
t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], Differential(t)((u(t))
[7]) ~ ((3.3833333333333337(u(t))[6] - 0.9666666666666667(u(t))[5] - 5.3166
66666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^
2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6
 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] 
+ (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + 
(u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^
2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//
4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (0.9666666666666667(u(t
))[9] + 5.316666666666667(u(t))[7] - 3.3833333333333337(u(t))[8]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(
t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t)
)[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13
//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u
(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2
(u(t))[8])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (
u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(
t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))
^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (
13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] -
 4(u(t))[6])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.
6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + 
(u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(
t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) +
 (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^
2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2
(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u
(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u
(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (
u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.
45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) +
 (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u
(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 
4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u
(t))[7], Differential(t)((u(t))[8]) ~ ((3.3833333333333337(u(t))[7] - 0.966
6666666666667(u(t))[6] - 5.316666666666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (
13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (
u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(
t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(
t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (
u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^
2))^2)) + (7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8]
 + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - 
(u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(
((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8]
 + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[
7])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.316666666666667(u(t))[8] - 
3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u
(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((
u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u
(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])
^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (1.45(u(t))[
10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[
8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t
))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[
7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9
] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(
t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (2.9(
u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u
(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 
4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u
(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(
t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) 
+ (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 
14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (
u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*((
(u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(
u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))[8], Differential(t)((
u(t))[9]) ~ ((5.316666666666667(u(t))[9] + 0.9666666666666667(u(t))[11] - 3
.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(
t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2)
 + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] -
 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))
[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (1.45(
u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*((
(u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11]
 - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] -
 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))
[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2)
)^2)) + (3.3833333333333337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.3166
66666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13
//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t)
)[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) +
 (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[8] - 1
4.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (
u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10
])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^
2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] 
- 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13/
/12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[9] + 7.25(
u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))
[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + 
(1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(
u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^
2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8]
 + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] 
+ (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8
])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10
])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[
10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + 
(13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)))*(u(t))[9], Differe
ntial(t)((u(t))[10]) ~ ((7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / (
(0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//
4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(
t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t)
)[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e
-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[
10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (5.8(u(t))[9] + 14.5(u(t))[10] - 2.
9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t
))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3
(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t)
)[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[9] - 0
.9666666666666667(u(t))[8] - 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-
6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[1
0] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] -
 (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1
//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8
] - 4(u(t))[9])^2))^2)) + (0.9666666666666667(u(t))[12] + 5.316666666666667
(u(t))[10] - 3.3833333333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] 
- 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))
[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[
11])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((
1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(
t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2)
 + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1
 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*(
(3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11
])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10
] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Differential(t)((u(t))[1
1]) ~ ((3.3833333333333337(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.3166
66666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[1
1] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(
t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13]
 - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(
t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (1.
45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t)
)[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[
12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(
((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 
2(u(t))[12])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[
10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2
(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2
(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2))^2)) + (5.316666666666667(u(t))[11] + 0.966666666
6666667(u(t))[13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//
4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u
(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u
(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4
)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13]
 - 2(u(t))[12])^2))^2)) + (2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t))[9]) 
/ ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t
))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] 
- 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] 
- 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((
3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))
[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[1
1] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(
t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13]
 - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (
13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)))*(u(t))[11], Diffe
rential(t)((u(t))[12]) ~ ((5.316666666666667(u(t))[12] + 0.9666666666666667
(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u
(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[1
1])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(
u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(
u(t))[13])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((
0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[1
1] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[
10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(
u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2
(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*(
(1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3
(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t)
)[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13
])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((
1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(
u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[1
4] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) +
 (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[12]
 + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11
] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) 
+ (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[1
2] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (
u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[1
1])^2))^2)) + (3.3833333333333337(u(t))[11] - 0.9666666666666667(u(t))[10] 
- 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (
u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 
0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1/
/4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + 
(u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))
[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2
))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-
6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[1
3] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[
12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2)
)^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2
) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1/
/4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(
u(t))[12])^2))^2)))*(u(t))[12]  …  Differential(t)((u(t))[22]) ~ ((5.8(u(t)
)[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] 
- 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^
2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t
))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] -
 (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2))
 + (1.45(u(t))[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (
1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] 
+ (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] -
 (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (1
3//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t)
)[24] - 2(u(t))[23])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))
[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])
^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t)
)[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t)
)[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (
13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (3.3833333333333
337(u(t))[21] - 0.9666666666666667(u(t))[20] - 5.316666666666667(u(t))[22])
 / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) +
 (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23]
 - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24]
 - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//1
2)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[21] - 5.8(
u(t))[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(
t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12
)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(
t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])
^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (0.966666
6666666667(u(t))[24] + 5.316666666666667(u(t))[22] - 3.3833333333333337(u(t
))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21
])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(
t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(
t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23
])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) +
 (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], Dif
ferential(t)((u(t))[23]) ~ ((1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((
u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[2
1] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[2
5] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2)
)^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13/
/12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.316666666666667(
u(t))[23] + 0.9666666666666667(u(t))[25] - 3.3833333333333337(u(t))[24]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))
[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 
4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 
4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*
(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(
t))[22] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))
[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*(
(3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t)
)[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] 
- 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)
) + (3.3833333333333337(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.316666
666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])
^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(
t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25]
 - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u
(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (
2.9(u(t))[22] - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t
))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(
t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12
)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])
^2))^2)) + (5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))
[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t)
)[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^
2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^
2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2))^2)))*(u(t))[23], Differential(t)((u(t))[24]) ~ ((3.3833333
333333337(u(t))[23] - 0.9666666666666667(u(t))[22] - 5.316666666666667(u(t)
)[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)
*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12
)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t
))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(
t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) +
 (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (0.966666666666
6667(u(t))[26] + 5.316666666666667(u(t))[24] - 3.3833333333333337(u(t))[25]
) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2)
 + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[
24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
3] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//
4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.
9(u(t))[24] - 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + 
(u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[
25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))
[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (
u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[
24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2)
)^2)) + (5.8(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[
24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4
(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) 
+ (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u
(t))[24])^2))^2)) + (1.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0
.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23
] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[2
4] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u
(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(
u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(
u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))
[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25]
)^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1
.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u
(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((
u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22
] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + 
(13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t))[24], Diff
erential(t)((u(t))[25]) ~ ((5.316666666666667(u(t))[25] + 0.966666666666666
7(u(t))[27] - 3.3833333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[
25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))
[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*((
(u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4
(u(t))[26])^2))^2)) + (7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / (
(0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13
//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] +
 (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - 
(u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(
((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t
))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))
[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(
((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))
[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] -
 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))
 + (3.3833333333333337(u(t))[24] - 0.9666666666666667(u(t))[23] - 5.3166666
66666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] 
- 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t
))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(
t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] 
- 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t
))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2
.9(u(t))[24] - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t
))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t)
)[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*
((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^
2))^2)) + (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t)
)[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] -
 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2
) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2
(u(t))[25])^2))^2)))*(u(t))[25], Differential(t)((u(t))[26]) ~ ((3.38333333
33333337(u(t))[25] - 0.9666666666666667(u(t))[24] - 5.316666666666667(u(t))
[26]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25]
)^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(
t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + 
(1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (1.45(u(t))[28] 
- 2.9(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24
] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(
t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u
(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25]
 + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(
t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27]
)^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.
0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(
t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28]
 - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])
^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] -
 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) /
 ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + 
(1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26]
 + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] 
- (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*
((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u
(t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t
))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])
^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27]
)^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2
) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.31666666
6666667(u(t))[26] + 0.9666666666666667(u(t))[28] - 3.3833333333333337(u(t))
[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25]
)^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(
t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + 
(1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)))*(u(t))[26], Diffe
rential(t)((u(t))[27]) ~ ((7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25])
 / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) +
 (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28]
 - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29
] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//1
2)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5
(u(t))[27] - 2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(
t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12
)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(
t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])
^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (3.383333
3333333337(u(t))[26] - 0.9666666666666667(u(t))[25] - 5.316666666666667(u(t
))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[2
8])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((
u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27
])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) +
 (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26]
 - 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2
7] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u
(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u
(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26
] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t
))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1
.45(u(t))[29] - 2.9(u(t))[27] - 7.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(
t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(
t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12
)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29]
 - 4(u(t))[28])^2))^2)) + (0.9666666666666667(u(t))[29] + 5.316666666666667
(u(t))[27] - 3.3833333333333337(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[2
7] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28
])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(
u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(
u(t))[28])^2))^2)))*(u(t))[27], Differential(t)((u(t))[28]) ~ ((3.383333333
3333337(u(t))[27] - 0.9666666666666667(u(t))[26] - 5.316666666666667(u(t))[
28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(
((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))
[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))
[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^
2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (1
3//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 
14.5(u(t))[28] - 2.9(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] +
 (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t)
)[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13
//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] +
 (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[
29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (2.9(
u(t))[28] + 7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((
3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))
[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[
29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(
((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2))^2)) + (1.45(u(t))[30] - 2.9(u(t))[28] - 7.25(u(t))[29]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))
[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 
4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*
(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t
))[29] - 14.5(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[
29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((
3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))
[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2)
 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (0.966666666
6666667(u(t))[30] + 5.316666666666667(u(t))[28] - 3.3833333333333337(u(t))[
29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^
2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))
[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))
[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^
2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (1
3//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)))*(u(t))[28], Differ
ential(t)((u(t))[29]) ~ ((0.9666666666666667(u(t))[31] + 5.316666666666667(
u(t))[29] - 3.3833333333333337(u(t))[30]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(
t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28
])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u
(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2
9] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u
(t))[30])^2))^2)) + (3.3833333333333337(u(t))[28] - 0.9666666666666667(u(t)
)[27] - 5.316666666666667(u(t))[29]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))
[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4
(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) 
+ (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[
29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + 
(u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[
28])^2))^2)) + (2.9(u(t))[28] - 14.5(u(t))[29] - 5.8(u(t))[30]) / ((0.1 / (
(1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3
(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[2
9])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[
30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6
 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30
] - 2(u(t))[29])^2))^2)) + (5.8(u(t))[28] + 14.5(u(t))[29] - 2.9(u(t))[30])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(
t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u
(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27]
 - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31
] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^
2))*((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28]
 + (u(t))[30] - 2(u(t))[29])^2))^2)) + (2.9(u(t))[29] + 7.25(u(t))[28] - 1.
45(u(t))[27]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (
13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29]
 + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[29
] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(
t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28
])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (1.45(u(
t))[31] - 2.9(u(t))[29] - 7.25(u(t))[30]) / ((0.1 / ((1.0e-6 + (13//12)*(((
u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27
] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30]
)^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1
.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u
(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2
9] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u
(t))[30])^2))^2)))*(u(t))[29], 0 ~ 0.2(u(t))[1] + 2.0(u(t))[3] + (u(t))[5] 
- 0.2(u(t))[6] - (u(t))[2] - 2.0(u(t))[4], 0 ~ 2.0(u(t))[29] + 0.2(u(t))[31
] + (u(t))[27] - 0.2(u(t))[26] - (u(t))[30] - 2.0(u(t))[28]], t, SymbolicUt
ils.Term{Real, Nothing}[(u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[
7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11], (u(t))[12]  …  (u(t))[22]
, (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (
u(t))[29], (u(t))[2], (u(t))[31]], Any[], Dict{Any, Any}(:u => u(t)), Any[]
, Symbolics.Equation[(u(t))[30] ~ 1.0666666666666667 / (1 + t) + 0.33333333
33333333(u(t))[29] - 0.06666666666666667(u(t))[28] - 0.3333333333333333(u(t
))[31], (u(t))[1] ~ (u(t))[3] - 3.0(u(t))[2] - 0.2(u(t))[4]], Base.RefValue
{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symboli
cs.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0
)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)
), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0))
, :pdesys1, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.534
4827586206896, (u(t))[18] => 0.5689655172413793, (u(t))[8] => 0.22413793103
448276, (u(t))[10] => 0.29310344827586204, (u(t))[27] => 0.8793103448275862
, (u(t))[28] => 0.9137931034482759, (u(t))[2] => 0.017241379310344827, (u(t
))[24] => 0.7758620689655172, (u(t))[30] => 0.9827586206896551, (u(t))[21] 
=> 0.6724137931034483…), nothing, nothing, nothing, ModelingToolkit.Symboli
cContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Eq
uation[], Symbolics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[
], MethodOfLines.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1,
 MethodOfLines.EdgeAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOf
Lines.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscretization}, ModelingToo
lkit.PDESystem, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}
(MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}(MethodOfL
ines.VariableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{D
ataType, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataT
ype, Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Di
ct{SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{Sy
mbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), Sy
mbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{Symbol
icUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{
Int64, SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x))
, Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{
Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(
t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[2
2], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28],
 (u(t))[29], (u(t))[30], (u(t))[31]]), Dict{SymbolicUtils.Sym{Real, Base.Im
mutableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Floa
t64}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1
.0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepR
angeLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}
, Int64}}(x => -0.017241379310344827:0.034482758620689655:1.017241379310344
8), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Float6
4}(x => 0.034482758620689655), Dict{SymbolicUtils.Term{Real, Base.Immutable
Dict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x
) => CartesianIndices((30,))), Dict{SymbolicUtils.Term{Real, Base.Immutable
Dict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x
) => CartesianIndices((31,)))), MethodOfLines.MOLFiniteDifference{MethodOfL
ines.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscretization}(Dict{Symbolic
s.Num, Int64}(x => 29), t, 2, MethodOfLines.WENOScheme(1.0e-6), MethodOfLin
es.EdgeAlignedGrid(), true, false, MethodOfLines.ScalarizedDiscretization()
, Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), Modelin
gToolkit.PDESystem(Symbolics.Equation[Differential(x)(u(t, x))*u(t, x) + Di
fferential(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.
0, u(t, 1.0) ~ 1.0 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDoma
inPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolic
s.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, 
Any}(), nothing, Any[], :pdesys1, nothing), false, Base.RefValue{Any}(nothi
ng)), nothing, ModelingToolkit.Substitutions(Symbolics.Equation[(u(t))[30] 
~ 1.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[29] - 0.066666666
66666667(u(t))[28] - 0.3333333333333333(u(t))[31], (u(t))[1] ~ (u(t))[3] - 
3.0(u(t))[2] - 0.2(u(t))[4]], [Int64[], Int64[]], Symbolics.Equation[Differ
ential(t)((u(t))[3]) ~ ((1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((
0.1 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u(t))[4])^2) 
+ (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4]
 - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 
4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[2] - 14.5(u(t))[3] - 5.
8(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0
.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t)
)[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3
] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))
[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(
t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (1.45(u(t))[3] + 11.6(u(t))[2] +
 0.29(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2]
 - 0.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((
u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2))*((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u(
t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2)) +
 (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12
)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] 
- 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2]
 - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12
)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[
2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2))
 + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.3833333333
333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2
] - 0.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*((
(u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(
u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (6.2833333333
33333(u(t))[2] + 0.19333333333333336(u(t))[4] - 6.283333333333334(u(t))[3])
 / ((0.1 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u(t))[4]
)^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t
))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[
5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)
)*((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u(t))[4])^2) + (1
//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2)))*(u(t))[3], Diff
erential(t)((u(t))[4]) ~ ((3.3833333333333337(u(t))[3] - 0.9666666666666667
(u(t))[2] - 5.316666666666667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(
t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u
(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13
//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))
[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u
(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (2.9(
u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u
(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(
u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (1
3//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t)
)[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + 
(13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (0.966666666666666
7(u(t))[6] + 5.316666666666667(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((
0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)
*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^
2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) 
+ (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*
((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6
] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / 
((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//
4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4]
)^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2
) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4
)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))
[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) /
 ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1/
/4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4
])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^
2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))
[4])^2))^2)) + (7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1
.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t)
)[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3]
 - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12
)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t
))[3])^2))^2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((3.383333333333333
7(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.316666666666667(u(t))[5]) / ((
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12
)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2)
 + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*
((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5
] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4]
 + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + 
(u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])
^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2
) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)
*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5
])^2))^2)) + (0.9666666666666667(u(t))[7] + 5.316666666666667(u(t))[5] - 3.
3833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))
[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[
5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))
[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) +
 (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[5] + 7.
25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t
))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(
t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t
))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) 
+ (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[4] - 
5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u
(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u
(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(
t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*((
(u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5]
 - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(
u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u
(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*(
(3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)))*(u(t))[5], Differential(t)((
u(t))[6]) ~ ((2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7]
 - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 
4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*
(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6
] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))
[5])^2))^2)) + (3.3833333333333337(u(t))[5] - 0.9666666666666667(u(t))[4] -
 5.316666666666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(
t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(
t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t
))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) 
+ (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.3166666666666
67(u(t))[6] + 0.9666666666666667(u(t))[8] - 3.3833333333333337(u(t))[7]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] +
 (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2
) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4
)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))
[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) 
/ ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13
//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1/
/4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t
))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t)
)[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6
] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))
[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t
))[6])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t
))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5
] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//1
2)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)
))*(u(t))[6], Differential(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 
0.9666666666666667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-
6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(
u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3
(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5]
 + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6
])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8]
 - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))
[6])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8
] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] 
- 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)
*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6
] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) 
+ (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[
7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7]
 + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[
9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)
) + (0.9666666666666667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.383333333
3333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) +
 (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u
(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t)
)[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[
7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) 
+ (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (
u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(
t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))
^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ (
(7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//12
)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[
10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-
6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6]
 + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[
6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)
) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u
(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t
))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t
))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (
u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])
^2))^2)) + (3.3833333333333337(u(t))[7] - 0.9666666666666667(u(t))[6] - 5.3
16666666666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))
[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (1
3//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))
[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + 
(13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[7] - 5.
8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(
t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2
))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) +
 (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(
t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*((
(u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8]
 - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2
(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (
u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t
))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))
^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.316666
666666667(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t
))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[
9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(
t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2
))^2)))*(u(t))[8], Differential(t)((u(t))[9]) ~ ((2.9(u(t))[9] + 7.25(u(t))
[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] -
 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0
.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4
)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))
[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + 
(13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (1.45(u(t))[11] - 
2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + 
(u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[1
0])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10]
 - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (3.3
833333333333337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.316666666666667(
u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[
10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t
))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8
] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)
)*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*((
(u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9]
 - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(
u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*(
(3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t)
)[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5
.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(
t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*((
(u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2)
)^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2))^2)) + (5.316666666666667(u(t))[9] + 0.96666
66666666667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (
u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(
t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(
((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(
t))[10])^2))^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((5.8(u(t))[9] +
 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[
9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[
11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t
))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2
) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (7.25(u(t))[
9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[
8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t
))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t
))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (
u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[1
0] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)
) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] +
 (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(
t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)
*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12]
 - 4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[9] - 0.9666666666666667
(u(t))[8] - 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u
(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 
4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) +
 (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10
] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(
t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2
))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10
] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - 
(u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1/
/4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10]
)^2))^2)) + (0.9666666666666667(u(t))[12] + 5.316666666666667(u(t))[10] - 3
.3833333333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u
(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^
2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])
^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[1
1] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2
(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*
(u(t))[10], Differential(t)((u(t))[11]) ~ ((2.9(u(t))[11] + 7.25(u(t))[10] 
- 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) 
+ (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[
11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u
(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10
])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (3.383333
3333333337(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.316666666666667(u(t)
)[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10]
)^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))
[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))
[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^
2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1
//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.
8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (
u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12
)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(
t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])
^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.8(u(t)
)[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^
2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^
2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0
e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t)
)[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (
u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) +
 (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13
//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (
u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(
t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//1
2)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u
(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13
] - 2(u(t))[12])^2))^2)) + (5.316666666666667(u(t))[11] + 0.966666666666666
7(u(t))[13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[1
1])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[1
2])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / (
(1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(
u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11
] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u
(t))[12])^2))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ ((5.3166666666
66667(u(t))[12] + 0.9666666666666667(u(t))[14] - 3.3833333333333337(u(t))[1
3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*((
(u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[
10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))
[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1
//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (2.9(u(t))[12] + 7
.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - 
(u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1
//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] +
 (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t)
)[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^
2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))
[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t)
)[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])
^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] 
+ (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9
(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13
//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] +
 (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] 
+ (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t)
)[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(
((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (3.3833333333333337(u(t))
[11] - 0.9666666666666667(u(t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] +
 (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] 
+ (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t)
)[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t
))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0
e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t
))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12
] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2
) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e
-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t)
)[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] -
 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13
//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Diff
erential(t)((u(t))[22]) ~ ((3.3833333333333337(u(t))[21] - 0.96666666666666
67(u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[
22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[2
3])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*((
(u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[
22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2
(u(t))[21])^2))^2)) + (5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13/
/12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(
u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(
u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*(
(1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u
(t))[23] - 2(u(t))[22])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t
))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21
])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(
t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(
t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(
t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[2
2] - 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20]
 - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(
t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24]
 - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(
t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (
1.45(u(t))[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u
(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(
t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//1
2)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u
(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24
] - 2(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.31666666666666
7(u(t))[22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[
22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[2
3])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*((
(u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[
22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2
(u(t))[23])^2))^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~ ((3.38333333
33333337(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.316666666666667(u(t))
[23]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*
(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)
*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t)
)[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t)
)[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + 
(1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (5.8(u(t))[22] +
 14.5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] -
 (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (
1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (
1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] 
+ (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))
[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (2.9
(u(t))[22] - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[
23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))
[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(
((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[
22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2)
)^2)) + (5.316666666666667(u(t))[23] + 0.9666666666666667(u(t))[25] - 3.383
3333333333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[
24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((
3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))
[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 
4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))
 + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] -
 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (1
3//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t)
)[21] - 4(u(t))[22])^2))^2)) + (1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))
[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*
(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)
*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t)
)[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t)
)[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (
13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t))[23], Diffe
rential(t)((u(t))[24]) ~ ((1.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(
t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26]
 - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24
] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4
)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9
(u(t))[24] - 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (
u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[2
5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[
23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u
(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))
^2)) + (5.8(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[2
4] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(
u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) +
 (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4
)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(
t))[24])^2))^2)) + (3.3833333333333337(u(t))[23] - 0.9666666666666667(u(t))
[22] - 5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23
] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) 
+ (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[2
4] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (
u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[2
3])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((
1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(
t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u
(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25
])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[2
3])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25]
 - 2(u(t))[24])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.316666666666667
(u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*((
(u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[2
6] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[
24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((
u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(
u(t))[25])^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ ((7.25(u(t))[
24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 
2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] -
 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))
[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + 
(u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))
[24])^2))^2)) + (5.316666666666667(u(t))[25] + 0.9666666666666667(u(t))[27]
 - 3.3833333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] 
+ (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(
t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] 
+ (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])
^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.
0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(
t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])
^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25]
 + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t))[24] - 0.96
66666666666667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[2
3] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24
] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) 
+ (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4
)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u
(t))[25] - 2(u(t))[24])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t
))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24
])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(
u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(
t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26
] - 14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] 
- 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t
))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(
t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] 
- 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (1
3//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[25], Differ
ential(t)((u(t))[26]) ~ ((2.9(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) 
/ ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) +
 (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26
] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25]
 - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)
*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (5.8(u(t))[25] + 14.5(
u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(
t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27
])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^
2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t)
)[28] - 2.9(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(
t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] 
- 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28]
 - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t
))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26]
 + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t
))[27])^2))^2)) + (5.316666666666667(u(t))[26] + 0.9666666666666667(u(t))[2
8] - 3.3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2
4] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u
(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(
u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25
] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u
(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27
])^2))^2)) + (3.3833333333333337(u(t))[25] - 0.9666666666666667(u(t))[24] -
 5.316666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + 
(u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[
25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))
[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[
26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2)
)^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[
26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4
(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) 
+ (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u
(t))[26])^2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ ((3.3833333333
333337(u(t))[26] - 0.9666666666666667(u(t))[25] - 5.316666666666667(u(t))[2
7]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^
2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t)
)[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13
//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[29] - 
2.9(u(t))[27] - 7.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] 
+ (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t)
)[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t)
)[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] +
 (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t)
)[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^
2))^2)) + (0.9666666666666667(u(t))[29] + 5.316666666666667(u(t))[27] - 3.3
833333333333337(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t
))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)
*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12
)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t
))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29]
 - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2
)) + (7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25
] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26]
 - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) +
 (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)
*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(
t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t)
)[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26]
)^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t
))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(
t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t
))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28]
 - 14.5(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (
13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] -
 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13
//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)))*(u(t))[27], Differe
ntial(t)((u(t))[28]) ~ ((3.3833333333333337(u(t))[27] - 0.9666666666666667(
u(t))[26] - 5.316666666666667(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t
))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])
^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333
333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(
u(t))[29])^2) + (1//4)*((1.0666666666666667 / (1 + t) + 2.933333333333333(u
(t))[28] - 0.3333333333333333(u(t))[31] - 3.6666666666666665(u(t))[29])^2))
^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) 
+ (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (
u(t))[28] - 2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9(u(
t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[2
7])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u
(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((1.066666666666
6667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31
] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((1.0666666666666667 / (1 + t
) + 2.933333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 3.66666666
66666665(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2)
 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (2.9(u(t))[2
8] + 7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2)
 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] 
- 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*
((1.0666666666666667 / (1 + t) + 2.933333333333333(u(t))[28] - 0.3333333333
333333(u(t))[31] - 3.6666666666666665(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*
((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t
))[28] - 2(u(t))[27])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))
[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*
(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.33333333
33333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((1.06666666
66666667 / (1 + t) + 2.933333333333333(u(t))[28] - 0.3333333333333333(u(t))
[31] - 3.6666666666666665(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28
] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + 
(13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (1.546666666666
6666 / (1 + t) - 0.4833333333333333(u(t))[31] - 2.9966666666666666(u(t))[28
] - 6.766666666666667(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] -
 (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.933333333333
3333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29
])^2) + (1//4)*((1.0666666666666667 / (1 + t) + 2.933333333333333(u(t))[28]
 - 0.3333333333333333(u(t))[31] - 3.6666666666666665(u(t))[29])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*((1
.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.333333333333
3333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((1.066666666666
6667 / (1 + t) + 2.933333333333333(u(t))[28] - 0.3333333333333333(u(t))[31]
 - 3.6666666666666665(u(t))[29])^2))^2)) + (1.031111111111111 / (1 + t) + 5
.252222222222223(u(t))[28] - 3.061111111111112(u(t))[29] - 0.32222222222222
22(u(t))[31]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(
t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27]
 + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((1.0666666
666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t
))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((1.0666666666666667 / (
1 + t) + 2.933333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 3.666
6666666666665(u(t))[29])^2))^2))*((1.0e-6 + (13//12)*((1.0666666666666667 /
 (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.
6666666666666667(u(t))[29])^2) + (1//4)*((1.0666666666666667 / (1 + t) + 2.
933333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 3.66666666666666
65(u(t))[29])^2))^2)))*(u(t))[28], Differential(t)((u(t))[29]) ~ ((2.9(u(t)
)[29] + 7.25(u(t))[28] - 1.45(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u
(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27]
 - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (
1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.66
66666666666667(u(t))[29])^2) + (1//4)*((-1.0666666666666667 / (1 + t) + 0.3
333333333333333(u(t))[31] + 1.0666666666666667(u(t))[28] - 0.33333333333333
33(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-2.1333333333333333 / (1
 + t) + 0.13333333333333333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.6
666666666666665(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.2
6666666666666666(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.3333333333333
33(u(t))[31])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t
))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (3.
3833333333333337(u(t))[28] - 0.9666666666666667(u(t))[27] - 5.3166666666666
67(u(t))[29]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u
(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.
6 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333
(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2
) + (1//4)*((-1.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[31] +
 1.0666666666666667(u(t))[28] - 0.3333333333333333(u(t))[29])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0.13333333333333333
(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.6666666666666665(u(t))[31])^
2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.26666666666666666(u(t))[28] 
+ 1.6666666666666667(u(t))[29] + 2.333333333333333(u(t))[31])^2))^2))*((1.0
e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t
))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (-3.6088888888888895 / (1 + t)
 + 0.2255555555555556(u(t))[28] + 2.0944444444444446(u(t))[31] + 4.18888888
888889(u(t))[29]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] -
 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) 
+ 0.6 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.933333333333
3333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29
])^2) + (1//4)*((-1.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[3
1] + 1.0666666666666667(u(t))[28] - 0.3333333333333333(u(t))[29])^2))^2) + 
0.1 / ((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0.1333333333333
3333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.6666666666666665(u(t))[3
1])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.26666666666666666(u(t))[
28] + 1.6666666666666667(u(t))[29] + 2.333333333333333(u(t))[31])^2))^2))*(
(1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0.13333333333333333(u(
t))[28] + 0.33333333333333337(u(t))[29] + 1.6666666666666665(u(t))[31])^2) 
+ (1//4)*((-4.266666666666667 / (1 + t) + 0.26666666666666666(u(t))[28] + 1
.6666666666666667(u(t))[29] + 2.333333333333333(u(t))[31])^2))^2)) + (-7.73
3333333333333 / (1 + t) + 0.48333333333333334(u(t))[28] + 3.866666666666666
3(u(t))[31] - 5.316666666666666(u(t))[29]) / ((0.1 / ((1.0e-6 + (13//12)*((
(u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[2
7] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.0666666666666667 /
 (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.
6666666666666667(u(t))[29])^2) + (1//4)*((-1.0666666666666667 / (1 + t) + 0
.3333333333333333(u(t))[31] + 1.0666666666666667(u(t))[28] - 0.333333333333
3333(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((-2.1333333333333333 / 
(1 + t) + 0.13333333333333333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1
.6666666666666665(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0
.26666666666666666(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.33333333333
3333(u(t))[31])^2))^2))*((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t)
 + 0.13333333333333333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.666666
6666666665(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.266666
66666666666(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.333333333333333(u(
t))[31])^2))^2)) + (-3.0933333333333333 / (1 + t) + 0.9666666666666666(u(t)
)[31] + 5.993333333333333(u(t))[28] + 13.533333333333333(u(t))[29]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)
*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (13//1
2)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.333333
3333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((-1.06666
66666666667 / (1 + t) + 0.3333333333333333(u(t))[31] + 1.0666666666666667(u
(t))[28] - 0.3333333333333333(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (13//12)
*((-2.1333333333333333 / (1 + t) + 0.13333333333333333(u(t))[28] + 0.333333
33333333337(u(t))[29] + 1.6666666666666665(u(t))[31])^2) + (1//4)*((-4.2666
66666666667 / (1 + t) + 0.26666666666666666(u(t))[28] + 1.6666666666666667(
u(t))[29] + 2.333333333333333(u(t))[31])^2))^2))*((1.0e-6 + (13//12)*((1.06
66666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.333333333333333
3(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((-1.06666666666666
67 / (1 + t) + 0.3333333333333333(u(t))[31] + 1.0666666666666667(u(t))[28] 
- 0.3333333333333333(u(t))[29])^2))^2)) + (-6.1866666666666665 / (1 + t) + 
3.2866666666666666(u(t))[28] + 1.9333333333333331(u(t))[31] - 16.4333333333
33334(u(t))[29]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 
2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) +
 0.6 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333
333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29]
)^2) + (1//4)*((-1.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[31
] + 1.0666666666666667(u(t))[28] - 0.3333333333333333(u(t))[29])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0.13333333333333
333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.6666666666666665(u(t))[31
])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.26666666666666666(u(t))[2
8] + 1.6666666666666667(u(t))[29] + 2.333333333333333(u(t))[31])^2))^2))*((
1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))
[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1
//4)*((-1.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[31] + 1.066
6666666666667(u(t))[28] - 0.3333333333333333(u(t))[29])^2))^2)))*(u(t))[29]
, 0 ~ 2.2(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 1.6(u(t))[2] - 2.04(u(t))[4
], 0 ~ -1.0666666666666667 / (1 + t) + 0.5333333333333333(u(t))[31] + 1.666
6666666666667(u(t))[29] + (u(t))[27] - 0.2(u(t))[26] - 1.9333333333333333(u
(t))[28]])), Any[(u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(
t))[8], (u(t))[9], (u(t))[10], (u(t))[11], (u(t))[12]  …  Differential(t)((
u(t))[22]), Differential(t)((u(t))[23]), Differential(t)((u(t))[24]), Diffe
rential(t)((u(t))[25]), Differential(t)((u(t))[26]), Differential(t)((u(t))
[27]), Differential(t)((u(t))[28]), Differential(t)((u(t))[29]), (u(t))[2],
 (u(t))[31]], ModelingToolkit.SystemStructures.SystemStructure(ModelingTool
kit.SystemStructures.DiffGraph(Union{Nothing, Int64}[28, 29, 30, 31, 32, 33
, 34, 35, 36, 37  …  nothing, nothing, nothing, nothing, nothing, nothing, 
nothing, nothing, nothing, nothing], Union{Nothing, Int64}[nothing, nothing
, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing  …
  20, 21, 22, 23, 24, 25, 26, 27, nothing, nothing]), ModelingToolkit.Syste
mStructures.DiffGraph(Union{Nothing, Int64}[nothing, nothing, nothing, noth
ing, nothing, nothing, nothing, nothing, nothing, nothing  …  nothing, noth
ing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing
], Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, nothi
ng, nothing, nothing, nothing, nothing  …  nothing, nothing, nothing, nothi
ng, nothing, nothing, nothing, nothing, nothing, nothing]), BipartiteGraph 
with (29, 56) (𝑠,𝑑)-vertices
   #  src                    dst
  1   [1, 2, 3, 28, 55]      [1, 2, 3, 28]
  2   [1, 2, 3, 4, 29, 55]   [1, 2, 3, 4, 28]
  3   [1, 2, 3, 4, 5, 30]    [1, 2, 3, 4, 5, 28]
  4   [2, 3, 4, 5, 6, 31]    [2, 3, 4, 5, 6, 28]
  5   [3, 4, 5, 6, 7, 32]    [3, 4, 5, 6, 7]
  6   [4, 5, 6, 7, 8, 33]    [4, 5, 6, 7, 8]
  7   [5, 6, 7, 8, 9, 34]    [5, 6, 7, 8, 9]
  8   [6, 7, 8, 9, 10, 35]   [6, 7, 8, 9, 10]
  9   [7, 8, 9, 10, 11, 36]  [7, 8, 9, 10, 11]
  ⋮                          
 48   ⋅                      [21]
 49   ⋅                      [22]
 50   ⋅                      [23]
 51   ⋅                      [24]
 52   ⋅                      [25]
 53   ⋅                      [26]
 54   ⋅                      [27]
 55   ⋅                      [1, 2, 28]
 56   ⋅                      [26, 27, 29], BipartiteGraph with (31, 58) (𝑠,
𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    [31]
 52   ⋅    [31]
 53   ⋅    [29, 31]
 54   ⋅    [29, 31]
 55   ⋅    [28, 30]
 56   ⋅    [28, 30]
 57   ⋅    [29, 31]
 58   ⋅    [29, 31]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equat
ion[(u(t))[30] ~ 1.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[29
] - 0.06666666666666667(u(t))[28] - 0.3333333333333333(u(t))[31], (u(t))[1]
 ~ (u(t))[3] - 3.0(u(t))[2] - 0.2(u(t))[4]], [Int64[], Int64[]], Symbolics.
Equation[Differential(t)((u(t))[3]) ~ ((1.45(u(t))[5] - 2.9(u(t))[3] - 7.25
(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.
2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))
[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3]
 + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[
4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[2] - 14.
5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5
.0(u(t))[2] - 0.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2
(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (
13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t
))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) +
 (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (1.45(u(t))[3] + 
11.6(u(t))[2] + 0.29(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*((2.0(u(t))[3]
 - 5.0(u(t))[2] - 0.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] -
 0.2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2)
 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + 
(u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(
t))[2] - 0.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t)
)[4])^2))^2)) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1
.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u(t))[4])^2) + (1//4)*
((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t)
)[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4
])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(
t))[3])^2))^2)) + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(t))[5]
 - 3.3833333333333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*((2.0(u(t))[3
] - 5.0(u(t))[2] - 0.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] 
- 0.2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2
) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] +
 (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5]
 - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) 
+ (6.283333333333333(u(t))[2] + 0.19333333333333336(u(t))[4] - 6.2833333333
33334(u(t))[3]) / ((0.1 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2]
 - 0.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((
u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2))*((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u(
t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2)))*
(u(t))[3], Differential(t)((u(t))[4]) ~ ((3.3833333333333337(u(t))[3] - 0.9
666666666666667(u(t))[2] - 5.316666666666667(u(t))[4]) / ((0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + 
(u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t
))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + 
(u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^
2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] +
 (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(
t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u
(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (
u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (0.
9666666666666667(u(t))[6] + 5.316666666666667(u(t))[4] - 3.3833333333333337
(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[
3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5]
 - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 
4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t)
)[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.
25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t)
)[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[
5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] 
- 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 
2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t
))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))
[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6]
 - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t
))[5] - 2(u(t))[4])^2))^2)) + (7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]
) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + 
(1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t)
)[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5
])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u
(t))[2] - 4(u(t))[3])^2))^2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((3.
3833333333333337(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.316666666666667
(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4
])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6]
 - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.
9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//
12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*
((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5
] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] 
- 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))
[6] - 2(u(t))[5])^2))^2)) + (0.9666666666666667(u(t))[7] + 5.31666666666666
7(u(t))[5] - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(
t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))
^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13
//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t
))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2
(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.
9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u
(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 
4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (
2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] 
- 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) 
+ (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (
u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2
) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[7]
 - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] +
 (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4
(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6]
)^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)))*(u(t))[5], Di
fferential(t)((u(t))[6]) ~ ((2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) 
/ ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))
[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6]
 + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1/
/4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2)) + (3.3833333333333337(u(t))[5] - 0.966666666666
6667(u(t))[4] - 5.316666666666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] -
 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) +
 (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 
4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (
5.316666666666667(u(t))[6] + 0.9666666666666667(u(t))[8] - 3.38333333333333
37(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13/
/12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[
6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] 
- 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(
t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 
7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t
))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t)
)[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8
] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((
u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] 
- 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[
8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u
(t))[7] - 2(u(t))[6])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7
]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + 
(13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t
))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[
7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u
(t))[6])^2))^2)))*(u(t))[6], Differential(t)((u(t))[7]) ~ ((3.3833333333333
337(u(t))[6] - 0.9666666666666667(u(t))[5] - 5.316666666666667(u(t))[7]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6
] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] +
 (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^
2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))
[5] - 4(u(t))[6])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) 
/ ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[
6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13
//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t
))[5] - 4(u(t))[6])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))
[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8]
)^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t
))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t)
)[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9
] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//
4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u
(t))[8])^2))^2)) + (0.9666666666666667(u(t))[9] + 5.316666666666667(u(t))[7
] - 3.3833333333333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - 
(u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((
3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2
(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[6
] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] -
 (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 
4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12
)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)))*(u(t))[7], Differential(t)
((u(t))[8]) ~ ((7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1
.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t
))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//
12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u
(t))[7])^2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((
3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + 
(13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10
] - 4(u(t))[9])^2))^2)) + (3.3833333333333337(u(t))[7] - 0.9666666666666667
(u(t))[6] - 5.316666666666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(
t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4
(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(
t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t
))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(
u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.
9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] 
- 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4
(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (
u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2
) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] 
+ 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] +
 (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12
)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(t))
[10] + 5.316666666666667(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / 
((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(
u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^
2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (1
3//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] 
- 4(u(t))[9])^2))^2)))*(u(t))[8], Differential(t)((u(t))[9]) ~ ((2.9(u(t))[
9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9
] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))
[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[
10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t)
)[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(
u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (1.
45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)
*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[
11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7
] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[
8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(
t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])
^2))^2)) + (3.3833333333333337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.3
16666666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))
[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2)
)^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + 
(13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u
(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2
) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] 
+ 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] +
 (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10]
)^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[1
0] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (
13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[8] - 14
.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2
) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] -
 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//
12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (5.316666666666667(u(t
))[9] + 0.9666666666666667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11]
 - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^
2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13
//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u
(t))[11] - 4(u(t))[10])^2))^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ (
(5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t)
)[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))
[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] 
- (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))
 + (7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13
//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u
(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u
(t))[9])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*
((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[1
1])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 
+ (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[1
0] + (u(t))[12] - 4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[9] - 0.9
666666666666667(u(t))[8] - 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10]
 + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (
u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//
4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] 
- 4(u(t))[9])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//
4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))
[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e
-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2))^2)) + (0.9666666666666667(u(t))[12] + 5.31666666666666
7(u(t))[10] - 3.3833333333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(
((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8]
 - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12]
 - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t)
)[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))
[11])^2))^2)))*(u(t))[10], Differential(t)((u(t))[11]) ~ ((2.9(u(t))[11] + 
7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - 
(u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13
//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + 
(u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[1
1] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^
2)) + (3.3833333333333337(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.31666
6666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t
))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] 
- 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9
(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[
9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12
])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((
u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10
] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^
2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] 
- 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2
) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + 
(1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(
((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))
[11])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((
3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[1
1])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[1
2])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[
11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (5.316666666666667(u(t))[11] + 0.
9666666666666667(u(t))[13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e
-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[
12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[
13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2
) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (
u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~
 ((5.316666666666667(u(t))[12] + 0.9666666666666667(u(t))[14] - 3.383333333
3333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2
) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t)
)[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] -
 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t
))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (2.
9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t)
)[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t
))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*
((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] 
- 4(u(t))[11])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) 
/ ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t
))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(
t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] 
- 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14]
 - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)
*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(
u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t)
)[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*
((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12
)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t
))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^
2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (3.3833333
333333337(u(t))[11] - 0.9666666666666667(u(t))[10] - 5.316666666666667(u(t)
)[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)
*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12
)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t
))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(
t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) +
 (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] 
- 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] 
- (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + 
(1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12]
 + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t)
)[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t
))[12]  …  Differential(t)((u(t))[22]) ~ ((3.3833333333333337(u(t))[21] - 0
.9666666666666667(u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t)
)[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2
) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] +
 (u(t))[22] - 2(u(t))[21])^2))^2)) + (5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(
u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))
[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + 
(u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + 
(u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))
[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*((
(u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))
[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[2
0] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((
u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (7.25(u(t))[21
] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[2
2] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(
u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[2
2] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u
(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[2
1])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*((
(u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[2
3])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[
22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[24] + 5
.316666666666667(u(t))[22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t)
)[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2
))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2
) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] +
 (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], Differential(t)((u(t))[23])
 ~ ((3.3833333333333337(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.316666
666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])
^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(
t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25]
 - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u
(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (
5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t
))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(
t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12
)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])
^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))
[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t)
)[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^
2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^
2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2))^2)) + (5.316666666666667(u(t))[23] + 0.9666666666666667(u(
t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])
^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t
))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] 
+ (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] 
+ (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21]
 + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t
))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t
))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.
0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(
t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (1.45(u(t))[25] - 2.9(u(t))[2
3] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])
^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(
t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25]
 - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(
t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u
(t))[23], Differential(t)((u(t))[24]) ~ ((1.45(u(t))[26] - 2.9(u(t))[24] - 
7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) +
 (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 
+ (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[2
4] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[
22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(
u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[
25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(
u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(
((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[
26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))
[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*((
(u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4
(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((
0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1/
/4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + 
(u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (
u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*(
(1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u
(t))[25] - 2(u(t))[24])^2))^2)) + (3.3833333333333337(u(t))[23] - 0.9666666
666666667(u(t))[22] - 5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(
u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2
(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 
0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1/
/4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[
22] - 4(u(t))[23])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((
u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((
(u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[2
6] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[
24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2)
)^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[2
3] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.
316666666666667(u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-
6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))
[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 
4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2)
 + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13
//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + 
(u(t))[26] - 4(u(t))[25])^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) 
~ ((7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] 
+ (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25]
 + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t
))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (1
3//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t)
)[25] - 2(u(t))[24])^2))^2)) + (5.316666666666667(u(t))[25] + 0.96666666666
66667(u(t))[27] - 3.3833333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(
t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u
(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12
)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27]
 - 4(u(t))[26])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26])
 / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) +
 (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26]
 - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27
] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4
)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u
(t))[24] - 0.9666666666666667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13/
/12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(
u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2
(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*((
(u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t)
)[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[2
3] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2
) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) +
 (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (2.9(u(t))[24]
 - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25
] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u
(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + 
(13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25
] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t
))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(
t))[25], Differential(t)((u(t))[26]) ~ ((2.9(u(t))[26] + 7.25(u(t))[25] - 1
.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(
u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0
.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//
4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u
(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[2
5])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (5.8(u(
t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((
u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24
] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[2
8] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u
(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25]
 - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2
)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26
] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[2
6] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u
(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + 
(13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(
t))[28] - 4(u(t))[27])^2))^2)) + (5.316666666666667(u(t))[26] + 0.966666666
6666667(u(t))[28] - 3.3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (
u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + 
(u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[
27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//
12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*((
(u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[2
8] - 4(u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[25] - 0.9666666666666
667(u(t))[24] - 5.316666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)*
(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))
[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t)
)[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(
((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 
4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1
//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] +
 (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - 
(u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~
 ((3.3833333333333337(u(t))[26] - 0.9666666666666667(u(t))[25] - 5.31666666
6666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (
13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] -
 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t)
)[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (1.
45(u(t))[29] - 2.9(u(t))[27] - 7.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12
)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t
))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t
))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)
*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] 
- 4(u(t))[28])^2))^2)) + (0.9666666666666667(u(t))[29] + 5.316666666666667(
u(t))[27] - 3.3833333333333337(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u
(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27
] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28]
)^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u
(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2
7] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u
(t))[28])^2))^2)) + (7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//
12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u
(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(
u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((
1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((
u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))
[27] - 2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25
] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u
(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((
u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29
] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (2.9(u(t))[26] 
- 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27
] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(
t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(
t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26]
 + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t)
)[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)))*(u(t
))[27], Differential(t)((u(t))[28]) ~ ((3.3833333333333337(u(t))[27] - 0.96
66666666666667(u(t))[26] - 5.316666666666667(u(t))[28]) / ((0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29]
 - 2(u(t))[28])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (
1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.66
66666666666667(u(t))[29])^2) + (1//4)*((1.0666666666666667 / (1 + t) + 2.93
3333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 3.6666666666666665
(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4
(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t
))[28] - 2.9(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[
26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*((
(u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
(1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333
333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((1.0666666666
666667 / (1 + t) + 2.933333333333333(u(t))[28] - 0.3333333333333333(u(t))[3
1] - 3.6666666666666665(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] -
 (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2))
 + (2.9(u(t))[28] + 7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] 
+ (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] -
 (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.933333333333
3333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29
])^2) + (1//4)*((1.0666666666666667 / (1 + t) + 2.933333333333333(u(t))[28]
 - 0.3333333333333333(u(t))[31] - 3.6666666666666665(u(t))[29])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u
(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[2
9] - 14.5(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])
^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[2
8] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//
4)*((1.0666666666666667 / (1 + t) + 2.933333333333333(u(t))[28] - 0.3333333
333333333(u(t))[31] - 3.6666666666666665(u(t))[29])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[
26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u
(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + 
(1.5466666666666666 / (1 + t) - 0.4833333333333333(u(t))[31] - 2.9966666666
666666(u(t))[28] - 6.766666666666667(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t
))[28])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) +
 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666
666667(u(t))[29])^2) + (1//4)*((1.0666666666666667 / (1 + t) + 2.9333333333
33333(u(t))[28] - 0.3333333333333333(u(t))[31] - 3.6666666666666665(u(t))[2
9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[2
7])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6
 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] -
 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*(
(1.0666666666666667 / (1 + t) + 2.933333333333333(u(t))[28] - 0.33333333333
33333(u(t))[31] - 3.6666666666666665(u(t))[29])^2))^2)) + (1.03111111111111
1 / (1 + t) + 5.252222222222223(u(t))[28] - 3.061111111111112(u(t))[29] - 0
.3222222222222222(u(t))[31]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u
(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[2
7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//1
2)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//
12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.33333
33333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((1.06666
66666666667 / (1 + t) + 2.933333333333333(u(t))[28] - 0.3333333333333333(u(
t))[31] - 3.6666666666666665(u(t))[29])^2))^2))*((1.0e-6 + (13//12)*((1.066
6666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333
(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((1.0666666666666667
 / (1 + t) + 2.933333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 3
.6666666666666665(u(t))[29])^2))^2)))*(u(t))[28], Differential(t)((u(t))[29
]) ~ ((2.9(u(t))[29] + 7.25(u(t))[28] - 1.45(u(t))[27]) / ((0.3 / ((1.0e-6 
+ (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[2
9] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.06666
66666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u
(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((-1.0666666666666667 
/ (1 + t) + 0.3333333333333333(u(t))[31] + 1.0666666666666667(u(t))[28] - 0
.3333333333333333(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-2.133333
3333333333 / (1 + t) + 0.13333333333333333(u(t))[28] + 0.33333333333333337(
u(t))[29] + 1.6666666666666665(u(t))[31])^2) + (1//4)*((-4.266666666666667 
/ (1 + t) + 0.26666666666666666(u(t))[28] + 1.6666666666666667(u(t))[29] + 
2.333333333333333(u(t))[31])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(
t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28]
)^2))^2)) + (3.3833333333333337(u(t))[28] - 0.9666666666666667(u(t))[27] - 
5.316666666666667(u(t))[29]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (
u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[2
8])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9
333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.66666666666666
67(u(t))[29])^2) + (1//4)*((-1.0666666666666667 / (1 + t) + 0.3333333333333
333(u(t))[31] + 1.0666666666666667(u(t))[28] - 0.3333333333333333(u(t))[29]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0.13
333333333333333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.6666666666666
665(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.2666666666666
6666(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.333333333333333(u(t))[31]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) +
 (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (-3.60888888888
88895 / (1 + t) + 0.2255555555555556(u(t))[28] + 2.0944444444444446(u(t))[3
1] + 4.18888888888889(u(t))[29]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27]
 + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t
))[28])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) +
 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666
666667(u(t))[29])^2) + (1//4)*((-1.0666666666666667 / (1 + t) + 0.333333333
3333333(u(t))[31] + 1.0666666666666667(u(t))[28] - 0.3333333333333333(u(t))
[29])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 
0.13333333333333333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.666666666
6666665(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.266666666
66666666(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.333333333333333(u(t))
[31])^2))^2))*((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0.13333
333333333333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.6666666666666665
(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.2666666666666666
6(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.333333333333333(u(t))[31])^2
))^2)) + (-7.733333333333333 / (1 + t) + 0.48333333333333334(u(t))[28] + 3.
8666666666666663(u(t))[31] - 5.316666666666666(u(t))[29]) / ((0.1 / ((1.0e-
6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))
[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.066
6666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333
(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((-1.066666666666666
7 / (1 + t) + 0.3333333333333333(u(t))[31] + 1.0666666666666667(u(t))[28] -
 0.3333333333333333(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((-2.1333
333333333333 / (1 + t) + 0.13333333333333333(u(t))[28] + 0.3333333333333333
7(u(t))[29] + 1.6666666666666665(u(t))[31])^2) + (1//4)*((-4.26666666666666
7 / (1 + t) + 0.26666666666666666(u(t))[28] + 1.6666666666666667(u(t))[29] 
+ 2.333333333333333(u(t))[31])^2))^2))*((1.0e-6 + (13//12)*((-2.13333333333
33333 / (1 + t) + 0.13333333333333333(u(t))[28] + 0.33333333333333337(u(t))
[29] + 1.6666666666666665(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 
+ t) + 0.26666666666666666(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.333
333333333333(u(t))[31])^2))^2)) + (-3.0933333333333333 / (1 + t) + 0.966666
6666666666(u(t))[31] + 5.993333333333333(u(t))[28] + 13.533333333333333(u(t
))[29]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[2
8])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((
1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))
[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1
//4)*((-1.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[31] + 1.066
6666666666667(u(t))[28] - 0.3333333333333333(u(t))[29])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0.13333333333333333(u(t))
[28] + 0.33333333333333337(u(t))[29] + 1.6666666666666665(u(t))[31])^2) + (
1//4)*((-4.266666666666667 / (1 + t) + 0.26666666666666666(u(t))[28] + 1.66
66666666666667(u(t))[29] + 2.333333333333333(u(t))[31])^2))^2))*((1.0e-6 + 
(13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.
3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((-1
.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[31] + 1.066666666666
6667(u(t))[28] - 0.3333333333333333(u(t))[29])^2))^2)) + (-6.18666666666666
65 / (1 + t) + 3.2866666666666666(u(t))[28] + 1.9333333333333331(u(t))[31] 
- 16.433333333333334(u(t))[29]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] 
+ (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t)
)[28])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 
0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.66666666666
66667(u(t))[29])^2) + (1//4)*((-1.0666666666666667 / (1 + t) + 0.3333333333
333333(u(t))[31] + 1.0666666666666667(u(t))[28] - 0.3333333333333333(u(t))[
29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0
.13333333333333333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.6666666666
666665(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.2666666666
6666666(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.333333333333333(u(t))[
31])^2))^2))*((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333
333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t
))[29])^2) + (1//4)*((-1.0666666666666667 / (1 + t) + 0.3333333333333333(u(
t))[31] + 1.0666666666666667(u(t))[28] - 0.3333333333333333(u(t))[29])^2))^
2)))*(u(t))[29], 0 ~ 2.2(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 1.6(u(t))[2]
 - 2.04(u(t))[4], 0 ~ -1.0666666666666667 / (1 + t) + 0.5333333333333333(u(
t))[31] + 1.6666666666666667(u(t))[29] + (u(t))[27] - 0.2(u(t))[26] - 1.933
3333333333333(u(t))[28]])), Dict{Any, Any}()), nothing, ModelingToolkit.ODE
System(Symbolics.Equation[Differential(t)((u(t))[3]) ~ ((3.3833333333333337
(u(t))[2] - 0.9666666666666667(u(t))[1] - 5.316666666666667(u(t))[3]) / ((0
.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*
((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1]
 - 4(u(t))[2])^2))^2)) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((
0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)
*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^
2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) 
+ (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3]
)^2))^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1.0e
-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3
] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - 
(u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(
((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3]
 + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[
4])^2))^2)) + (2.9(u(t))[3] + 7.25(u(t))[2] - 1.45(u(t))[1]) / ((0.3 / ((1.
0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))
[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] 
- (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t)
)[2])^2))^2)) + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(t))[5] -
 3.3833333333333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (
u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u
(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(
t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2)
 + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[2] -
 14.5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + 
(u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((
u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(
((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)))*(u(t))[3], Differential(t)((u
(t))[4]) ~ ((7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e
-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4
] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - 
(u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2
] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[
3])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0
e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[
4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] -
 (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3]
 - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) +
 (3.3833333333333337(u(t))[3] - 0.9666666666666667(u(t))[2] - 5.31666666666
6667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(
t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6
] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(
u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (0.9666666666666667(u(t))[6] +
 5.316666666666667(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0e
-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4
] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - 
(u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4]
 + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0
e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[
4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] -
 (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3]
 - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) +
 (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[
2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6
 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] 
+ (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6
] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))
)*(u(t))[4], Differential(t)((u(t))[5]) ~ ((0.9666666666666667(u(t))[7] + 5
.316666666666667(u(t))[5] - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6
 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 
2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u
(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(
u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6]
)^2))^2)) + (3.3833333333333337(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.
316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))
[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))
[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[
6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.
5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))
[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[
5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))
[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 
1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (1
3//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[
7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((
u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] 
- 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u
(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(
t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t)
)[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((
3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6]
 - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(
u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u
(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^
2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~ ((
3.3833333333333337(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.3166666666666
67(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))
[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[
7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] 
- 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 
5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t)
)[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))
[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8]
 - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]
) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t)
)[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7
])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2)) + (5.316666666666667(u(t))[6] + 0.96666666666
66667(u(t))[8] - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(
((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])
^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2)
 + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + 
(u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] 
- 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) +
 (2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^
2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] 
+ (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4
] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))
 + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])
^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6]
 + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7
])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], 
Differential(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.966666666666
6667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) +
 (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u
(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (
0.9666666666666667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.38333333333333
37(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13/
/12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[
5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] 
- 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(
t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 
1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (1
3//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t)
)[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9
] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(
u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] 
- 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (
13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t
))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))
[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(
t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t
))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[
8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u
(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(
t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))
[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1
//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u
(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2
(u(t))[8])^2))^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ ((3.38333333333
33337(u(t))[7] - 0.9666666666666667(u(t))[6] - 5.316666666666667(u(t))[8]) 
/ ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (
1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t
))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9
])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2)) + (7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[
6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2)
 + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(
u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t
))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] 
+ (u(t))[8] - 2(u(t))[7])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.31666
6666666667(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13
//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(
t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))
[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u
(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^
2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-
6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8
] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] 
+ (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t
))[9])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((
1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(
t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(
t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^
2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u
(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t)
)[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t
))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(
t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))
[8], Differential(t)((u(t))[9]) ~ ((5.316666666666667(u(t))[9] + 0.96666666
66666667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t
))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))
[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u
(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] 
+ (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))
[10])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / 
((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3
(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) +
 (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))
[11] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[8] - 0.966666666666
6667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(
((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11
] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] 
- 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))
[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (
u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u
(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((
u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] -
 (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) +
 (2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[
9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t)
)[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u
(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2
))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (
u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)
*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[
8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2
)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((7.25(u(t))[9] + 2.9(u(t))[10
] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] -
 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0
.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//
4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (5.8(u(t))[9]
 + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8
] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t)
)[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])
^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (3.3833333
333333337(u(t))[9] - 0.9666666666666667(u(t))[8] - 5.316666666666667(u(t))[
10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2
) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] -
 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((
3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (0.9666666666666667(u(t))[1
2] + 5.316666666666667(u(t))[10] - 3.3833333333333337(u(t))[11]) / ((0.3 / 
((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(
u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12]
 - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^
2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1
3//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] +
 (u(t))[12] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u
(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[
11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))
[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2
))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9
] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7
.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u
(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (
u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[1
1])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2)
 + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Di
fferential(t)((u(t))[11]) ~ ((3.3833333333333337(u(t))[10] - 0.966666666666
6667(u(t))[9] - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[
9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12
])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((
u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(
t))[10])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)
*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t)
)[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0
e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t
))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11
] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2
) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t)
)[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4
(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//
12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.316666666666667(u
(t))[11] + 0.9666666666666667(u(t))[13] - 3.3833333333333337(u(t))[12]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[
10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2
(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2
(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((
1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((
u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[11] + 7.25(u(t))
[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12]
)^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u
(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] 
- 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9
(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[
9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12
])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((
u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10
] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^
2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ ((5.316666666666667(u(t))[12
] + 0.9666666666666667(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (
u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[
11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))
[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-
6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))
[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] 
- 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2)
 + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))
[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 
4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t)
)[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8
(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[
12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))
[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / 
((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((
3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[
11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2)
)^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-
6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[1
3] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[
12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2
) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13
//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + 
(u(t))[10] - 4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[11] - 0.96666
66666666667(u(t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 
2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] -
 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (
1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t)
)[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[
13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(
((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))
[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t)
)[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))
[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Differential(t)((u
(t))[22]) ~ ((5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u
(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23]
)^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 +
 (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] 
- 2(u(t))[22])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) 
/ ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + 
(13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] 
- 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] 
- 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12
)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (7.25(u(t))[21] + 2.9(
u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(
t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12
)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(
t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20]
 - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^
2)) + (3.3833333333333337(u(t))[21] - 0.9666666666666667(u(t))[20] - 5.3166
66666666667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[2
0] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((
u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(
u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) +
 (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (
u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u
(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//
12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u
(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22
])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.316666666666667(u(t))[22] - 
3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (
u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[
21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//
12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (
u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[2
4] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2)
)^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~ ((1.45(u(t))[25] - 2.9(u(t
))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[
24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / 
((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((
3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((
3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))
[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 
4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))
 + (5.316666666666667(u(t))[23] + 0.9666666666666667(u(t))[25] - 3.38333333
33333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^
2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0
e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t
))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] 
- 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t
))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2
.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t
))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(
t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12
)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21]
 - 4(u(t))[22])^2))^2)) + (3.3833333333333337(u(t))[22] - 0.966666666666666
7(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4)*(((u
(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23
])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((
u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(
u(t))[22])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0
.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22
] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
1] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u
(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u
(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(
t))[24] - 2(u(t))[23])^2))^2)) + (5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t)
)[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)
*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12
)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t
))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t
))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t
))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[23], Differential(t)((u(
t))[24]) ~ ((3.3833333333333337(u(t))[23] - 0.9666666666666667(u(t))[22] - 
5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(
t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4
)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//
12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u
(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))
^2)) + (0.9666666666666667(u(t))[26] + 5.316666666666667(u(t))[24] - 3.3833
333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))
[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^
2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[
25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 
2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) 
+ (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] +
 (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] 
+ (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t)
)[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13
//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))
[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[2
5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^
2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t)
)[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2
))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[
23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[26] - 2.9(u(t))[24] -
 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) 
+ (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[
24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))
[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4
(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))
[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (2.9(
u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[2
4])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[
25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3
(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2
3] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))
^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ ((5.316666666666667(u(t))[2
5] + 0.9666666666666667(u(t))[27] - 3.3833333333333337(u(t))[26]) / ((0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*
(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)
*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t)
)[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))
[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e
-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t)
)[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (7.25(u(t))[24] + 2.9(u(t))[25]
 - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] -
 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + 
(1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] -
 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t)
)[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.
45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t
))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t)
)[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*
((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] 
- 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t))[24] - 0.9666666666666667
(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25
] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26]
)^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1
.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u
(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25
] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u
(t))[24])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//1
2)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(
t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u
(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1
.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t
))[26] - 2(u(t))[25])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))
[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])
^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(
t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])
^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t)
)[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[25], Differential(t)((u(t
))[26]) ~ ((3.3833333333333337(u(t))[25] - 0.9666666666666667(u(t))[24] - 5
.316666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u
(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[2
7])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(
t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26
] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^
2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[2
6] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(
u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) +
 (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u
(t))[28] - 4(u(t))[27])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26] - 2.9(u(t
))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[2
5])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(
u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(
t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] + 7.25(u(t))[2
5] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26
] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) 
+ (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27]
 - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u
(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (
2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(
t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u
(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12
)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])
^2))^2)) + (5.316666666666667(u(t))[26] + 0.9666666666666667(u(t))[28] - 3.
3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u
(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25
])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[2
7])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(
t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28
] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^
2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ ((7.25(u(t))[26] + 2.9(u(t))
[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[2
5] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((
u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[2
9] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(
u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) +
 (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u
(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0
.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//
4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u
(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27
])^2))^2)) + (3.3833333333333337(u(t))[26] - 0.9666666666666667(u(t))[25] -
 5.316666666666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + 
(u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[
28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[
26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (
u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[2
5] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2)
)^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.3 / ((1.0e-6
 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[
27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2
(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) 
+ (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u
(t))[27])^2))^2)) + (1.45(u(t))[29] - 2.9(u(t))[27] - 7.25(u(t))[28]) / ((0
.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//
4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u
(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(
u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (0.9666666666666667(u(t))[2
9] + 5.316666666666667(u(t))[27] - 3.3833333333333337(u(t))[28]) / ((0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(
((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[
27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))
[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-
6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))
[27] + (u(t))[29] - 4(u(t))[28])^2))^2)))*(u(t))[27], Differential(t)((u(t)
)[28]) ~ ((3.3833333333333337(u(t))[27] - 0.9666666666666667(u(t))[26] - 5.
316666666666667(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t)
)[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)
*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*
((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t
))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] 
- 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2
)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9(u(t))[29]) / ((0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26]
 + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] 
- (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (
13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t)
)[28])^2))^2)) + (2.9(u(t))[28] + 7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)
*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t)
)[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t)
)[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0
e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t
))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[30] - 2.9(u(t))[28
] - 7.25(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^
2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t
))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] 
- 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t
))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)) + (2
.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t)
)[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t)
)[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)
*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^
2))^2)) + (0.9666666666666667(u(t))[30] + 5.316666666666667(u(t))[28] - 3.3
833333333333337(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t
))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)
*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t
))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] 
- 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2
)))*(u(t))[28], Differential(t)((u(t))[29]) ~ ((0.9666666666666667(u(t))[31
] + 5.316666666666667(u(t))[29] - 3.3833333333333337(u(t))[30]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u
(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (
u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[2
8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[
30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[
29] + (u(t))[31] - 4(u(t))[30])^2))^2)) + (3.3833333333333337(u(t))[28] - 0
.9666666666666667(u(t))[27] - 5.316666666666667(u(t))[29]) / ((0.1 / ((1.0e
-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t)
)[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^
2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (1
3//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] +
 (u(t))[27] - 4(u(t))[28])^2))^2)) + (2.9(u(t))[28] - 14.5(u(t))[29] - 5.8(
u(t))[30]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t)
)[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + 
(u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[29] +
 (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))
[30])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*((
(u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)) + (5.8(u(t))[28] + 14.5(u(t)
)[29] - 2.9(u(t))[30]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30
])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((
1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(
u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[3
1] - 4(u(t))[30])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) +
 (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)) + (2.9(u(t))[29]
 + 7.25(u(t))[28] - 1.45(u(t))[27]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[28
] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) 
+ (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[2
9] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (
u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[2
8])^2))^2)) + (1.45(u(t))[31] - 2.9(u(t))[29] - 7.25(u(t))[30]) / ((0.1 / (
(1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3
(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[2
9])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[
30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[
29] + (u(t))[31] - 4(u(t))[30])^2))^2)))*(u(t))[29], 0 ~ 0.2(u(t))[1] + 2.0
(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - (u(t))[2] - 2.0(u(t))[4], 0 ~ 2.0(u(
t))[29] + 0.2(u(t))[31] + (u(t))[27] - 0.2(u(t))[26] - (u(t))[30] - 2.0(u(t
))[28]], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[3], (u(t))[4], (u(t))[
5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11], (u(
t))[12]  …  (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(
t))[27], (u(t))[28], (u(t))[29], (u(t))[2], (u(t))[31]], Any[], Dict{Any, A
ny}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[30] ~ 1.0666666666666667 
/ (1 + t) + 0.3333333333333333(u(t))[29] - 0.06666666666666667(u(t))[28] - 
0.3333333333333333(u(t))[31], (u(t))[1] ~ (u(t))[3] - 3.0(u(t))[2] - 0.2(u(
t))[4]], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefVal
ue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symb
olics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbo
lics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbol
ics.Num}(undef, 0, 0)), :pdesys1, ModelingToolkit.ODESystem[], Dict{Any, An
y}((u(t))[17] => 0.5344827586206896, (u(t))[18] => 0.5689655172413793, (u(t
))[8] => 0.22413793103448276, (u(t))[10] => 0.29310344827586204, (u(t))[27]
 => 0.8793103448275862, (u(t))[28] => 0.9137931034482759, (u(t))[2] => 0.01
7241379310344827, (u(t))[24] => 0.7758620689655172, (u(t))[30] => 0.9827586
206896551, (u(t))[21] => 0.6724137931034483…), nothing, nothing, nothing, M
odelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuou
sCallback(Symbolics.Equation[], Symbolics.Equation[])], ModelingToolkit.Sym
bolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}(), MethodOfLin
es.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}, MethodOfLines.MOLFin
iteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscre
tization}, ModelingToolkit.PDESystem, Base.RefValue{Any}, MethodOfLines.Sca
larizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.Edge
AlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUtils.Sym{Real
, Base.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Ba
se.ImmutableDict{DataType, Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.0),
 t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real
}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, An
y}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, No
thing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}},
 Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.ImmutableDict{Dat
aType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{Da
taType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(
t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (
u(t))[10]  …  (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (
u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30], (u(t))[31]]), Dict{SymbolicU
tils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, Ba
se.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0:
0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{
DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, Base.T
wicePrecision{Float64}, Int64}}(x => -0.017241379310344827:0.03448275862068
9655:1.0172413793103448), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{D
ataType, Any}}, Float64}(x => 0.034482758620689655), Dict{SymbolicUtils.Ter
m{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.
OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{SymbolicUtils.Ter
m{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.
OneTo{Int64}}}}(u(t, x) => CartesianIndices((31,)))), MethodOfLines.MOLFini
teDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscret
ization}(Dict{Symbolics.Num, Int64}(x => 29), t, 2, MethodOfLines.WENOSchem
e(1.0e-6), MethodOfLines.EdgeAlignedGrid(), true, false, MethodOfLines.Scal
arizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(),
 Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equation[Differential(x)
(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, 
x) ~ x, u(t, 0.0) ~ 0.0, u(t, 1.0) ~ 1.0 / (1 + t)], Symbolics.VarDomainPai
ring[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x
, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullPa
rameters(), Dict{Any, Any}(), nothing, Any[], :pdesys1, nothing), false, Ba
se.RefValue{Any}(nothing)), ModelingToolkit.SystemStructures.TearingState{M
odelingToolkit.ODESystem}(ModelingToolkit.ODESystem(Symbolics.Equation[Diff
erential(t)((u(t))[3]) ~ ((3.3833333333333337(u(t))[2] - 0.9666666666666667
(u(t))[1] - 5.316666666666667(u(t))[3]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(
t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u
(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13
//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))
[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u
(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2)) + (5.8(
u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u
(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(
u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (1
3//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + 
(13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (1.45(u(t))[5] - 2
.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u
(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(
t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t
))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) 
+ (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[3] + 
7.25(u(t))[2] - 1.45(u(t))[1]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + 
(u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((
u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^
2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2)) + (5.31666666666
6667(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.3833333333333337(u(t))[4]) 
/ ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1
//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[
3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])
^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1/
/4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t
))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[2] - 14.5(u(t))[3] - 5.8(u(t))[4])
 / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (
1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))
[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4]
)^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t
))[3])^2))^2)))*(u(t))[3], Differential(t)((u(t))[4]) ~ ((7.25(u(t))[3] + 2
.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u
(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(
t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t
))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2)
 + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (5.8(u(t))[3] + 
14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (
u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u
(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (3.3833333333333337(u(t))[3] 
- 0.9666666666666667(u(t))[2] - 5.316666666666667(u(t))[4]) / ((0.1 / ((1.0
e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[
4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] -
 (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))
[3])^2))^2)) + (0.9666666666666667(u(t))[6] + 5.316666666666667(u(t))[4] - 
3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u
(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(
t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t
))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) 
+ (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[3] - 
5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (
u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u
(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4]
 - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2
(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u
(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t)
)[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[4], Differential(t)((
u(t))[5]) ~ ((0.9666666666666667(u(t))[7] + 5.316666666666667(u(t))[5] - 3.
3833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))
[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[
5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))
[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) +
 (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (3.383333333333333
7(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.316666666666667(u(t))[5]) / ((
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12
)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2)
 + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*
((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5
] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4]
 + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + 
(u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])
^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2
) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)
*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5
])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6]
 - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 
4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.
1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*(
(3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5
] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))
[4])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4]
 - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)
*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t
))[6])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t
))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4
] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4
)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)
))*(u(t))[5], Differential(t)((u(t))[6]) ~ ((3.3833333333333337(u(t))[5] - 
0.9666666666666667(u(t))[4] - 5.316666666666667(u(t))[6]) / ((0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4]
 + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (
u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*((
(u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] 
+ (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5
])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4
] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - 
(u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(
((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] 
- (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)) + 
(1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6
] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2
) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8]
 - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) 
+ (5.316666666666667(u(t))[6] + 0.9666666666666667(u(t))[8] - 3.38333333333
33337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[
8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)
)*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*((
(u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[6] + 7.25(u(t))[5]
 - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) +
 (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u
(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t)
)[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[
6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) 
+ (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (
u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t
))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))
^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] +
 (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], Differential(t)((u(t))[7]) ~ (
(3.3833333333333337(u(t))[6] - 0.9666666666666667(u(t))[5] - 5.316666666666
667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13
//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))
[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7
] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u
(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (0.9666666666666667(u(t))[9] + 
5.316666666666667(u(t))[7] - 3.3833333333333337(u(t))[8]) / ((0.6 / ((1.0e-
6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2
(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*((
(u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] 
+ (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8
])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8]
 - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))
[6])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8
] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] -
 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0
.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*
((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6
] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) 
+ (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])
^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] 
+ (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))
[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6]
 - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12
)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] 
- 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[
8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))[7],
 Differential(t)((u(t))[8]) ~ ((3.3833333333333337(u(t))[7] - 0.96666666666
66667(u(t))[6] - 5.316666666666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*
(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10
] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] -
 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6]
 - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) 
+ (7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//
12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t)
)[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9
])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[
6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t)
)[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^
2)) + (0.9666666666666667(u(t))[10] + 5.316666666666667(u(t))[8] - 3.383333
3333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10]
 - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7]
 + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + 
(u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1
//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (1.45(u(t))[10] - 2.
9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(
t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2
))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) +
 (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(
t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (2.9(u(t))[7]
 - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[
9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] -
 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//1
2)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t
))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10
] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] +
 (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))[8], Differential(t)((u(t))[9]
) ~ ((5.316666666666667(u(t))[9] + 0.9666666666666667(u(t))[11] - 3.3833333
333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] -
 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0
.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4
)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))
[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2)
 + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (1.45(u(t))[11
] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9
] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t
))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))
[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))
[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2
(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + 
(3.3833333333333337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.316666666666
667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(
t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*((
(u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2)
)^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12
)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t)
)[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13
//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t)
)[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((
u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[9] + 7.25(u(t))[8]
 - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(
u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*(
(3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9]
)^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13
//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(
u(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))
[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + 
(1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(
u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)
*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)))*(u(t))[9], Differential(t)
((u(t))[10]) ~ ((7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / (
(1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u
(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(
t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] 
- 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2
) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13
//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u
(t))[8] - 4(u(t))[9])^2))^2)) + (5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[
11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2
) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[1
0] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9]
 - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (
u(t))[11] - 2(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[9] - 0.9666666
666666667(u(t))[8] - 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(
t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[
11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / (
(1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3
(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(
t))[9])^2))^2)) + (0.9666666666666667(u(t))[12] + 5.316666666666667(u(t))[1
0] - 3.3833333333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8
] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t)
)[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[1
2] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))
^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] 
+ (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u
(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4
)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^
2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0
e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))
[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9]
 - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)
 + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + 
(1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t
))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Differential(t)((u(t))[11]) ~ ((
3.3833333333333337(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.316666666666
667(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u
(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] 
+ (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] 
+ (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t
))[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])
^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (1.45(u(t))
[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t
))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4
(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) 
+ (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6
 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[
11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (
u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[
12])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u
(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u
(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[1
2])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[1
0])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 +
 (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2))^2)) + (5.316666666666667(u(t))[11] + 0.9666666666666667(
u(t))[13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(
t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12]
)^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1
.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(
t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] 
+ (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t
))[12])^2))^2)) + (2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] +
 (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t)
)[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t)
)[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-
6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[
11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[12] - 1
4.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u
(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] 
+ (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] 
+ (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t
))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*
(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)))*(u(t))[11], Differential(
t)((u(t))[12]) ~ ((5.316666666666667(u(t))[12] + 0.9666666666666667(u(t))[1
4] - 3.3833333333333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11]
 - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2
) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) +
 (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12
] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u
(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13
])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / ((
1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(
t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u
(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[1
3])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 
+ (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[1
2] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] - 
2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + 
(13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12
] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[1
2] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u
(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12
)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[12] + 7.25(
u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t
))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)
*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(
t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12
] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^
2)) + (3.3833333333333337(u(t))[11] - 0.9666666666666667(u(t))[10] - 5.3166
66666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13
])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(
u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((
(u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[1
4] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2
(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) +
 (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//
4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u
(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(
u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//
4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u
(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12
])^2))^2)))*(u(t))[12]  …  Differential(t)((u(t))[22]) ~ ((5.8(u(t))[21] + 
14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] +
 (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t)
)[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13
//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] +
 (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[
23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (1.45
(u(t))[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))
[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[
23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(
((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / 
((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (1
3//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 
2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 
4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*
(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (3.3833333333333337(u(t)
)[21] - 0.9666666666666667(u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12
)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t
))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.
0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(
t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23
] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] 
- 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t
))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] 
- 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (1
3//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (0.96666666666666
67(u(t))[24] + 5.316666666666667(u(t))[22] - 3.3833333333333337(u(t))[23]) 
/ ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + 
(13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] 
- 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] 
- 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12
)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], Differentia
l(t)((u(t))[23]) ~ ((1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0
.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22
] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
1] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u
(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u
(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((
1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((
u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.316666666666667(u(t))[23
] + 0.9666666666666667(u(t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (
u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + 
(u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[
22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[
24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-
6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))
[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] 
- 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2)
 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-
6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))
[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 
2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t)
)[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (3.3
833333333333337(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.31666666666666
7(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (1
3//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] 
+ (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] 
+ (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22]
)^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (2.9(u(t)
)[22] - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^
2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])
^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t
))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] -
 (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))
 + (5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2
(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 
2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13
//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[
23])^2))^2)))*(u(t))[23], Differential(t)((u(t))[24]) ~ ((3.383333333333333
7(u(t))[23] - 0.9666666666666667(u(t))[22] - 5.316666666666667(u(t))[24]) /
 ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t)
)[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] -
 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] 
- 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*
((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (0.9666666666666667(u(t
))[26] + 5.316666666666667(u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4
)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u
(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(
t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u
(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[
24] - 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2)
 + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25
] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(
u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + 
(5.8(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//
12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u
(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (
u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[2
3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//1
2)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24]
)^2))^2)) + (1.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1
.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t
))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(
t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23
])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24
] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5
.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (
13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24]
 + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22
] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(
t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)
*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t))[24], Differential
(t)((u(t))[25]) ~ ((5.316666666666667(u(t))[25] + 0.9666666666666667(u(t))[
27] - 3.3833333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[2
5] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(
u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2
(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[2
4] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[2
6])^2))^2)) + (7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*((
(u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[
27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[2
6])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[
23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] -
 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4
(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[
24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4
(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))
[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.38
33333333333337(u(t))[24] - 0.9666666666666667(u(t))[23] - 5.316666666666667
(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t)
)[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] +
 (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] 
+ (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t)
)[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^
2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))
[24] - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] -
 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2
) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t)
)[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - 
(u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) 
+ (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + 
(u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] +
 (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))
[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13/
/12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[2
5])^2))^2)))*(u(t))[25], Differential(t)((u(t))[26]) ~ ((3.3833333333333337
(u(t))[25] - 0.9666666666666667(u(t))[24] - 5.316666666666667(u(t))[26]) / 
((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (
1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] 
+ (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] -
 (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*(
(3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (1.45(u(t))[28] - 2.9(u(
t))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t
))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])
^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27]
)^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] 
- 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)
) + (5.8(u(t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (
13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] 
+ (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26]
 + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t
))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (1
3//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(
((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))
[26])^2))^2)) + (2.9(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*(
(3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)
*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t)
)[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))
[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e
-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t)
)[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))[26]
 - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] -
 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (
1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 
2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13/
/12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.316666666666667(
u(t))[26] + 0.9666666666666667(u(t))[28] - 3.3833333333333337(u(t))[27]) / 
((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (
1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] 
+ (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] -
 (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*(
(3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)))*(u(t))[26], Differential(
t)((u(t))[27]) ~ ((7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12
)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t
))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(
t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.
0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(
t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[2
7] - 2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] 
- 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t
))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(
t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] 
- 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (1
3//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (3.38333333333333
37(u(t))[26] - 0.9666666666666667(u(t))[25] - 5.316666666666667(u(t))[27]) 
/ ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) +
 (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25
] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26]
 - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12
)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] - 5.8(u
(t))[28] - 14.5(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(
t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26]
)^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t
))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^
2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t)
)[29] - 2.9(u(t))[27] - 7.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(
t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] 
- 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] 
- 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t
))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27]
 + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t
))[28])^2))^2)) + (0.9666666666666667(u(t))[29] + 5.316666666666667(u(t))[2
7] - 3.3833333333333337(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27
] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u
(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27
] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u
(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28
])^2))^2)))*(u(t))[27], Differential(t)((u(t))[28]) ~ ((3.3833333333333337(
u(t))[27] - 0.9666666666666667(u(t))[26] - 5.316666666666667(u(t))[28]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[
27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2
(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4
(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t
))[28] - 2.9(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[
26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*((
(u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[
30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) 
+ (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (2.9(u(t))[28
] + 7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2
(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) 
+ (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[
28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (
u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[
27])^2))^2)) + (1.45(u(t))[30] - 2.9(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (
u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (
u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[
27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[
29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-
6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))
[28] + (u(t))[30] - 2(u(t))[29])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[29] -
 14.5(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) 
+ (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[
26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2
(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//
12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (0.9666666666666667(
u(t))[30] + 5.316666666666667(u(t))[28] - 3.3833333333333337(u(t))[29]) / (
(0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13
//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2
(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4
(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(
((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)))*(u(t))[28], Differential(t
)((u(t))[29]) ~ ((0.9666666666666667(u(t))[31] + 5.316666666666667(u(t))[29
] - 3.3833333333333337(u(t))[30]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] 
- (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)
 + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + 
(1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29]
 + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[29] + (u(
t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30]
)^2))^2)) + (3.3833333333333337(u(t))[28] - 0.9666666666666667(u(t))[27] - 
5.316666666666667(u(t))[29]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (
u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[2
8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//1
2)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u
(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[2
9] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))
^2)) + (2.9(u(t))[28] - 14.5(u(t))[29] - 5.8(u(t))[30]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[2
9] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[28
] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) 
+ (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (1//4
)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(
t))[29])^2))^2)) + (5.8(u(t))[28] + 14.5(u(t))[29] - 2.9(u(t))[30]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] 
+ (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27]
 + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t
))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(
t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.
0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t)
)[30] - 2(u(t))[29])^2))^2)) + (2.9(u(t))[29] + 7.25(u(t))[28] - 1.45(u(t))
[27]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*
(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t)
)[27] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t
))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + 
(1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (1.45(u(t))[31] 
- 2.9(u(t))[29] - 7.25(u(t))[30]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27
] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(
t))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (
13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29]
 + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[29] + (u(
t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30]
)^2))^2)))*(u(t))[29], 0 ~ 0.2(u(t))[1] + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(
t))[6] - (u(t))[2] - 2.0(u(t))[4], 0 ~ 2.0(u(t))[29] + 0.2(u(t))[31] + (u(t
))[27] - 0.2(u(t))[26] - (u(t))[30] - 2.0(u(t))[28]], t, SymbolicUtils.Term
{Real, Nothing}[(u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t
))[8], (u(t))[9], (u(t))[10], (u(t))[11], (u(t))[12]  …  (u(t))[22], (u(t))
[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29
], (u(t))[2], (u(t))[31]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbol
ics.Equation[(u(t))[30] ~ 1.0666666666666667 / (1 + t) + 0.3333333333333333
(u(t))[29] - 0.06666666666666667(u(t))[28] - 0.3333333333333333(u(t))[31], 
(u(t))[1] ~ (u(t))[3] - 3.0(u(t))[2] - 0.2(u(t))[4]], Base.RefValue{Vector{
Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(
undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base
.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.
RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesy
s1, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.53448275862
06896, (u(t))[18] => 0.5689655172413793, (u(t))[8] => 0.22413793103448276, 
(u(t))[10] => 0.29310344827586204, (u(t))[27] => 0.8793103448275862, (u(t))
[28] => 0.9137931034482759, (u(t))[2] => 0.017241379310344827, (u(t))[24] =
> 0.7758620689655172, (u(t))[30] => 0.9827586206896551, (u(t))[21] => 0.672
4137931034483…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinu
ousCallback[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[]
, Symbolics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], Metho
dOfLines.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodO
fLines.EdgeAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.Ed
geAlignedGrid, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDE
System, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodO
fLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}(MethodOfLines.Var
iableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType,
 Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any
}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{Symbo
licUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUt
ils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUt
ils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.
Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, S
ymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{S
ymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbolic
s.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], 
(u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[22], (u(t
))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[
29], (u(t))[30], (u(t))[31]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableD
ict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, Ba
se.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dic
t{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{
Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}
}(x => -0.017241379310344827:0.034482758620689655:1.0172413793103448), Dict
{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Float64}(x => 
0.034482758620689655), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{Dat
aType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => Car
tesianIndices((30,))), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{Dat
aType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => Car
tesianIndices((31,)))), MethodOfLines.MOLFiniteDifference{MethodOfLines.Edg
eAlignedGrid, MethodOfLines.ScalarizedDiscretization}(Dict{Symbolics.Num, I
nt64}(x => 29), t, 2, MethodOfLines.WENOScheme(1.0e-6), MethodOfLines.EdgeA
lignedGrid(), true, false, MethodOfLines.ScalarizedDiscretization(), Base.P
airs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit
.PDESystem(Symbolics.Equation[Differential(x)(u(t, x))*u(t, x) + Differenti
al(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, u(t, 0.0) ~ 0.0, u(t, 
1.0) ~ 1.0 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairin
g(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t,
 x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), 
nothing, Any[], :pdesys1, nothing), false, Base.RefValue{Any}(nothing)), no
thing, ModelingToolkit.Substitutions(Symbolics.Equation[(u(t))[30] ~ 1.0666
666666666667 / (1 + t) + 0.3333333333333333(u(t))[29] - 0.06666666666666667
(u(t))[28] - 0.3333333333333333(u(t))[31], (u(t))[1] ~ (u(t))[3] - 3.0(u(t)
)[2] - 0.2(u(t))[4]], [Int64[], Int64[]], Symbolics.Equation[Differential(t
)((u(t))[3]) ~ ((1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((
1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u(t))[4])^2) + (1//4)
*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t
))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[
4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + 
(1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (
u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[2] - 14.5(u(t))[3] - 5.8(u(t))[
4]) / ((0.1 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u(t))
[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (
u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t
))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))
^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] +
 (u(t))[4] - 2(u(t))[3])^2))^2)) + (1.45(u(t))[3] + 11.6(u(t))[2] + 0.29(u(
t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u
(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2]
 + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + 
(u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])
^2))^2))*((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u(t))[4])^
2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2)) + (5.8(u(
t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*((2.0(
u(t))[3] - 5.0(u(t))[2] - 0.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(
t))[2] - 0.2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t)
)[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t
))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(
t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (5.31
6666666666667(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.3833333333333337(u
(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(
u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2
] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] +
 (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4]
)^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13
//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (6.283333333333333(u(
t))[2] + 0.19333333333333336(u(t))[4] - 6.283333333333334(u(t))[3]) / ((0.1
 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u(t))[4])^2) + (
1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 
2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u
(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e
-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u(t))[4])^2) + (1//4)*((4
.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2)))*(u(t))[3], Differential
(t)((u(t))[4]) ~ ((3.3833333333333337(u(t))[3] - 0.9666666666666667(u(t))[2
] - 5.316666666666667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] +
 (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(
u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])
^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (2.9(u(t))[3]
 - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] 
+ (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(
((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u
(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2
(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (0.9666666666666667(u(t))[
6] + 5.316666666666667(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((
1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t
))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3
] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//1
2)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / 
((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u
(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)
 + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13/
/12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(
u(t))[5])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(
u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13
//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))
^2)) + (7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (
u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t)
)[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t
))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (
u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2
))^2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((3.3833333333333337(u(t))[
4] - 0.9666666666666667(u(t))[3] - 5.316666666666667(u(t))[5]) / ((0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t
))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4
] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4
)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(
t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t)
)[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3
] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//
4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2
)) + (0.9666666666666667(u(t))[7] + 5.316666666666667(u(t))[5] - 3.38333333
33333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) 
+ (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (
u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(
t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*
((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))
[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2
) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] +
 (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (
u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//1
2)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t)
)[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] 
- 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] 
+ (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + 
(u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4
] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(
u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4]
)^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] 
- 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 
2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.
0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))
[5] + (u(t))[7] - 4(u(t))[6])^2))^2)))*(u(t))[5], Differential(t)((u(t))[6]
) ~ ((2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t
))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[
5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.
0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t
))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))
^2)) + (3.3833333333333337(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.31666
6666666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] -
 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] +
 (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u
(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//1
2)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.316666666666667(u(t))
[6] + 0.9666666666666667(u(t))[8] - 3.3833333333333337(u(t))[7]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[
4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13/
/12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(
u(t))[7])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*((
(u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^
2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (1
3//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(
u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (
u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t
))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))
^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (
13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2
))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t
))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(
t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u
(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t)
)[6], Differential(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.966666
6666666667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//
4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))
[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8]
)^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e
-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7
] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t)
)[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2
)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t
))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))
[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.
0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(
t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))
^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(
t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t)
)[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t)
)[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t
))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(
u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t
))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^
2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (1
3//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t)
)[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u
(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9
666666666666667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.3833333333333337(
u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12
)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] 
- 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4
(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.
0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8
(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//1
2)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9]
 - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1
.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[
8] - 2(u(t))[7])^2))^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ ((7.25(u(
t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t
))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(
u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (1
3//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t)
)[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u
(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.4
5(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(
((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10]
 - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 
4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + 
(u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10
] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2))
 + (3.3833333333333337(u(t))[7] - 0.9666666666666667(u(t))[6] - 5.316666666
666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2
(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(
((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))
^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)
*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[
9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] 
- 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12
)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u
(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9
])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9]
 - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 
4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1
.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[
9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.31666666666666
7(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((
u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] -
 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) +
 (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] 
- 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)))*
(u(t))[8], Differential(t)((u(t))[9]) ~ ((2.9(u(t))[9] + 7.25(u(t))[8] - 1.
45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))
[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(
t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))
^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)
*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t)
)[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[1
1] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (1
3//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t
))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^
2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (3.383333333
3333337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.316666666666667(u(t))[9]
) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) 
+ (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + 
(u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t
))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e
-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u
(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8]
)^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e
-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))
[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8
] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (
u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))
[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])
^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - 
(u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t)
)[10] - 2(u(t))[9])^2))^2)) + (5.316666666666667(u(t))[9] + 0.9666666666666
667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9]
 - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] 
- 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[
8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(
t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])
^2))^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((5.8(u(t))[9] + 14.5(u(
t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))
[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) 
+ (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] -
 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13/
/12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (7.25(u(t))[9] + 2.9
(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(
t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^
2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u
(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (1.4
5(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)
*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[
8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])
^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0
e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t
))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10]
 + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t
))[11])^2))^2)) + (3.3833333333333337(u(t))[9] - 0.9666666666666667(u(t))[8
] - 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[
9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12
)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t
))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] 
- 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) +
 (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//
12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t
))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[1
1])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((
1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(
u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9]
 - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)
) + (0.9666666666666667(u(t))[12] + 5.316666666666667(u(t))[10] - 3.3833333
333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10]
 - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1
//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u
(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[1
1])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[1
0], Differential(t)((u(t))[11]) ~ ((2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u
(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//1
2)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u
(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + 
(1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (3.38333333333333
37(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.316666666666667(u(t))[11]) /
 ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (
1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2
(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4
(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3
(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[
12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t
))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] 
- 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (1
3//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.8(u(t))[10] + 
14.5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - 
(u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13
//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + 
(u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12
])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (1.45(u
(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*((
(u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9]
 - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])
^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(
t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11]
 + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(
t))[12])^2))^2)) + (5.316666666666667(u(t))[11] + 0.9666666666666667(u(t))[
13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10
] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) +
 (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 
+ (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11
] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t
))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12]
)^2))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ ((5.316666666666667(u(
t))[12] + 0.9666666666666667(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((
0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[1
1] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(
u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2
(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*(
(1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3
(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t)
)[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[1
3])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / (
(1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3
(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[
14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 
2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) 
+ (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2
(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 
2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1
//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))
[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[1
3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*((
(u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[
10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))
[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2
))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[
11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (3.3833333333333337(u(t))[11] - 0
.9666666666666667(u(t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e
-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[
13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))
[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^
2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1
3//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] +
 (u(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(
u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13/
/12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13
//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + 
(u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] +
 (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))
[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*((
(u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Differential
(t)((u(t))[22]) ~ ((3.3833333333333337(u(t))[21] - 0.9666666666666667(u(t))
[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[2
2] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(
u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[2
2] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u
(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[2
1])^2))^2)) + (5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((
u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22
])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23
])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23]
 - 2(u(t))[22])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) 
/ ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + 
(13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] 
- 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] 
- 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2
))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] 
+ (u(t))[23] - 2(u(t))[22])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.4
5(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t
))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] 
+ (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] 
+ (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t
))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])
^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (1.45(u(t
))[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22]
 - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])
^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(
t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22]
 + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(
t))[23])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.316666666666667(u(t))[
22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[2
2] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(
u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[2
2] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u
(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[2
3])^2))^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~ ((3.3833333333333337
(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.316666666666667(u(t))[23]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))
[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 
4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 
4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*(
(3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (5.8(u(t))[22] + 14.5(u(
t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[
24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((
3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))
[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2)
 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (2.9(u(t))[2
2] - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
2] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))
^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2)
 + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6
 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[
23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u
(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + 
(5.316666666666667(u(t))[23] + 0.9666666666666667(u(t))[25] - 3.38333333333
33337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) 
+ (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[
23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2
(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[
24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(
u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[
23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))
[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(
((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 
4(u(t))[22])^2))^2)) + (1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))
[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 
4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 
4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*
(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t))[23], Differential(
t)((u(t))[24]) ~ ((1.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] 
+ (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24]
 + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t
))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(
t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.
0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(
t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[2
4] - 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26
] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) 
+ (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25]
 - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u
(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (
5.8(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(
t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u
(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12
)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])
^2))^2)) + (3.3833333333333337(u(t))[23] - 0.9666666666666667(u(t))[22] - 5
.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t
))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)
*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(
t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24
] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^
2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] 
- 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26]
 - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) +
 (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)
*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.316666666666667(u(t))[2
4] - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
4] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u
(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(
u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23
] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u
(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25
])^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ ((7.25(u(t))[24] + 2.
9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (
u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[
24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))
[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (
u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[2
3] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2)
)^2)) + (5.316666666666667(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.383
3333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))
[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^
2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])
^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))
[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] -
 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))
 + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (
1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] 
+ (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] -
 (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (
1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t)
)[27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t))[24] - 0.9666666666
666667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(
t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t
))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)
*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25]
 - 2(u(t))[24])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) 
/ ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + 
(13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25
] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24]
 - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2
))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] 
+ (u(t))[26] - 2(u(t))[25])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5
(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t)
)[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] +
 (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] 
+ (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t)
)[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(
((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[25], Differential(t
)((u(t))[26]) ~ ((2.9(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*
((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12
)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t
))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t)
)[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0
e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t
))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26
] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] 
- 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + 
(1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] -
 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13
//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[28] - 
2.9(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] 
+ (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t)
)[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t
))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] +
 (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t)
)[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^
2))^2)) + (5.316666666666667(u(t))[26] + 0.9666666666666667(u(t))[28] - 3.3
833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(
t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27
])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28]
 - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2
)) + (3.3833333333333337(u(t))[25] - 0.9666666666666667(u(t))[24] - 5.31666
6666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2)
 + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27
] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(
u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + 
(2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//
12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u
(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (
u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[2
7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//1
2)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ ((3.3833333333333337(u
(t))[26] - 0.9666666666666667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((
0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1/
/4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + 
(u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (
u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*((
(u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[29] - 2.9(u(t)
)[27] - 7.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))
[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2
))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2
) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[
28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 
2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) 
+ (0.9666666666666667(u(t))[29] + 5.316666666666667(u(t))[27] - 3.383333333
3333337(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] -
 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t)
)[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] -
 4(u(t))[28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t
))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (7.
25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)*
((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t)
)[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*
((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] 
- 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) /
 ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (
13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] -
 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] +
 (u(t))[28] - 2(u(t))[27])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(
u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t)
)[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*
(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))
[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*((
(u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)))*(u(t))[27], Differential(t)
((u(t))[28]) ~ ((3.3833333333333337(u(t))[27] - 0.9666666666666667(u(t))[26
] - 5.316666666666667(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] -
 (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.933333333333
3333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29
])^2) + (1//4)*((1.0666666666666667 / (1 + t) + 2.933333333333333(u(t))[28]
 - 0.3333333333333333(u(t))[31] - 3.6666666666666665(u(t))[29])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3(u
(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28
] - 2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9(u(t))[29])
 / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) +
 (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29]
 - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (
1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.66
66666666666667(u(t))[29])^2) + (1//4)*((1.0666666666666667 / (1 + t) + 2.93
3333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 3.6666666666666665
(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//
12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (2.9(u(t))[28] + 7.2
5(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (
u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[
27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//
12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13/
/12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333
333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((1.0666
666666666667 / (1 + t) + 2.933333333333333(u(t))[28] - 0.3333333333333333(u
(t))[31] - 3.6666666666666665(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] -
 2(u(t))[27])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))[28]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))
[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((1.066
6666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333
(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((1.0666666666666667
 / (1 + t) + 2.933333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 3
.6666666666666665(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28]
 + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(
t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)
*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (1.5466666666666666 / (
1 + t) - 0.4833333333333333(u(t))[31] - 2.9966666666666666(u(t))[28] - 6.76
6666666666667(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[
29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t
))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + 
(1//4)*((1.0666666666666667 / (1 + t) + 2.933333333333333(u(t))[28] - 0.333
3333333333333(u(t))[31] - 3.6666666666666665(u(t))[29])^2))^2) + 0.1 / ((1.
0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(
t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*((1.0666666
666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t
))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((1.0666666666666667 / (
1 + t) + 2.933333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 3.666
6666666666665(u(t))[29])^2))^2)) + (1.031111111111111 / (1 + t) + 5.2522222
22222223(u(t))[28] - 3.061111111111112(u(t))[29] - 0.3222222222222222(u(t))
[31]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])
^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t)
)[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((1.066666666666666
7 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] -
 1.6666666666666667(u(t))[29])^2) + (1//4)*((1.0666666666666667 / (1 + t) +
 2.933333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 3.66666666666
66665(u(t))[29])^2))^2))*((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t)
 + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.66666666
66666667(u(t))[29])^2) + (1//4)*((1.0666666666666667 / (1 + t) + 2.93333333
3333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 3.6666666666666665(u(t))
[29])^2))^2)))*(u(t))[28], Differential(t)((u(t))[29]) ~ ((2.9(u(t))[29] + 
7.25(u(t))[28] - 1.45(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27]
 + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t
))[28])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) +
 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666
666667(u(t))[29])^2) + (1//4)*((-1.0666666666666667 / (1 + t) + 0.333333333
3333333(u(t))[31] + 1.0666666666666667(u(t))[28] - 0.3333333333333333(u(t))
[29])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 
0.13333333333333333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.666666666
6666665(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.266666666
66666666(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.333333333333333(u(t))
[31])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^
2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (3.38333333
33333337(u(t))[28] - 0.9666666666666667(u(t))[27] - 5.316666666666667(u(t))
[29]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28]
)^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.
0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[2
8] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//
4)*((-1.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[31] + 1.06666
66666666667(u(t))[28] - 0.3333333333333333(u(t))[29])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0.13333333333333333(u(t))[2
8] + 0.33333333333333337(u(t))[29] + 1.6666666666666665(u(t))[31])^2) + (1/
/4)*((-4.266666666666667 / (1 + t) + 0.26666666666666666(u(t))[28] + 1.6666
666666666667(u(t))[29] + 2.333333333333333(u(t))[31])^2))^2))*((1.0e-6 + (1
3//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] +
 (u(t))[27] - 4(u(t))[28])^2))^2)) + (-3.6088888888888895 / (1 + t) + 0.225
5555555555556(u(t))[28] + 2.0944444444444446(u(t))[31] + 4.18888888888889(u
(t))[29]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))
[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / 
((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t
))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + 
(1//4)*((-1.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[31] + 1.0
666666666666667(u(t))[28] - 0.3333333333333333(u(t))[29])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0.13333333333333333(u(t
))[28] + 0.33333333333333337(u(t))[29] + 1.6666666666666665(u(t))[31])^2) +
 (1//4)*((-4.266666666666667 / (1 + t) + 0.26666666666666666(u(t))[28] + 1.
6666666666666667(u(t))[29] + 2.333333333333333(u(t))[31])^2))^2))*((1.0e-6 
+ (13//12)*((-2.1333333333333333 / (1 + t) + 0.13333333333333333(u(t))[28] 
+ 0.33333333333333337(u(t))[29] + 1.6666666666666665(u(t))[31])^2) + (1//4)
*((-4.266666666666667 / (1 + t) + 0.26666666666666666(u(t))[28] + 1.6666666
666666667(u(t))[29] + 2.333333333333333(u(t))[31])^2))^2)) + (-7.7333333333
33333 / (1 + t) + 0.48333333333333334(u(t))[28] + 3.8666666666666663(u(t))[
31] - 5.316666666666666(u(t))[29]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
7] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u
(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t)
 + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.66666666
66666667(u(t))[29])^2) + (1//4)*((-1.0666666666666667 / (1 + t) + 0.3333333
333333333(u(t))[31] + 1.0666666666666667(u(t))[28] - 0.3333333333333333(u(t
))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) 
+ 0.13333333333333333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.6666666
666666665(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.2666666
6666666666(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.333333333333333(u(t
))[31])^2))^2))*((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0.133
33333333333333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.66666666666666
65(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.26666666666666
666(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.333333333333333(u(t))[31])
^2))^2)) + (-3.0933333333333333 / (1 + t) + 0.9666666666666666(u(t))[31] + 
5.993333333333333(u(t))[28] + 13.533333333333333(u(t))[29]) / ((0.3 / ((1.0
e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t
))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.0
666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.33333333333333
33(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((-1.0666666666666
667 / (1 + t) + 0.3333333333333333(u(t))[31] + 1.0666666666666667(u(t))[28]
 - 0.3333333333333333(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-2.13
33333333333333 / (1 + t) + 0.13333333333333333(u(t))[28] + 0.33333333333333
337(u(t))[29] + 1.6666666666666665(u(t))[31])^2) + (1//4)*((-4.266666666666
667 / (1 + t) + 0.26666666666666666(u(t))[28] + 1.6666666666666667(u(t))[29
] + 2.333333333333333(u(t))[31])^2))^2))*((1.0e-6 + (13//12)*((1.0666666666
666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[
31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((-1.0666666666666667 / (1 
+ t) + 0.3333333333333333(u(t))[31] + 1.0666666666666667(u(t))[28] - 0.3333
333333333333(u(t))[29])^2))^2)) + (-6.1866666666666665 / (1 + t) + 3.286666
6666666666(u(t))[28] + 1.9333333333333331(u(t))[31] - 16.433333333333334(u(
t))[29]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[
28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / (
(1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t)
)[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (
1//4)*((-1.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[31] + 1.06
66666666666667(u(t))[28] - 0.3333333333333333(u(t))[29])^2))^2) + 0.3 / ((1
.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0.13333333333333333(u(t)
)[28] + 0.33333333333333337(u(t))[29] + 1.6666666666666665(u(t))[31])^2) + 
(1//4)*((-4.266666666666667 / (1 + t) + 0.26666666666666666(u(t))[28] + 1.6
666666666666667(u(t))[29] + 2.333333333333333(u(t))[31])^2))^2))*((1.0e-6 +
 (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0
.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((-
1.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[31] + 1.06666666666
66667(u(t))[28] - 0.3333333333333333(u(t))[29])^2))^2)))*(u(t))[29], 0 ~ 2.
2(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 1.6(u(t))[2] - 2.04(u(t))[4], 0 ~ -
1.0666666666666667 / (1 + t) + 0.5333333333333333(u(t))[31] + 1.66666666666
66667(u(t))[29] + (u(t))[27] - 0.2(u(t))[26] - 1.9333333333333333(u(t))[28]
])), Any[(u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], 
(u(t))[9], (u(t))[10], (u(t))[11], (u(t))[12]  …  Differential(t)((u(t))[22
]), Differential(t)((u(t))[23]), Differential(t)((u(t))[24]), Differential(
t)((u(t))[25]), Differential(t)((u(t))[26]), Differential(t)((u(t))[27]), D
ifferential(t)((u(t))[28]), Differential(t)((u(t))[29]), (u(t))[2], (u(t))[
31]], ModelingToolkit.SystemStructures.SystemStructure(ModelingToolkit.Syst
emStructures.DiffGraph(Union{Nothing, Int64}[28, 29, 30, 31, 32, 33, 34, 35
, 36, 37  …  nothing, nothing, nothing, nothing, nothing, nothing, nothing,
 nothing, nothing, nothing], Union{Nothing, Int64}[nothing, nothing, nothin
g, nothing, nothing, nothing, nothing, nothing, nothing, nothing  …  20, 21
, 22, 23, 24, 25, 26, 27, nothing, nothing]), ModelingToolkit.SystemStructu
res.DiffGraph(Union{Nothing, Int64}[nothing, nothing, nothing, nothing, not
hing, nothing, nothing, nothing, nothing, nothing  …  nothing, nothing, not
hing, nothing, nothing, nothing, nothing, nothing, nothing, nothing], Union
{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, noth
ing, nothing, nothing, nothing  …  nothing, nothing, nothing, nothing, noth
ing, nothing, nothing, nothing, nothing, nothing]), BipartiteGraph with (29
, 56) (𝑠,𝑑)-vertices
   #  src                    dst
  1   [1, 2, 3, 28, 55]      [1, 2, 3, 28]
  2   [1, 2, 3, 4, 29, 55]   [1, 2, 3, 4, 28]
  3   [1, 2, 3, 4, 5, 30]    [1, 2, 3, 4, 5, 28]
  4   [2, 3, 4, 5, 6, 31]    [2, 3, 4, 5, 6, 28]
  5   [3, 4, 5, 6, 7, 32]    [3, 4, 5, 6, 7]
  6   [4, 5, 6, 7, 8, 33]    [4, 5, 6, 7, 8]
  7   [5, 6, 7, 8, 9, 34]    [5, 6, 7, 8, 9]
  8   [6, 7, 8, 9, 10, 35]   [6, 7, 8, 9, 10]
  9   [7, 8, 9, 10, 11, 36]  [7, 8, 9, 10, 11]
  ⋮                          
 48   ⋅                      [21]
 49   ⋅                      [22]
 50   ⋅                      [23]
 51   ⋅                      [24]
 52   ⋅                      [25]
 53   ⋅                      [26]
 54   ⋅                      [27]
 55   ⋅                      [1, 2, 28]
 56   ⋅                      [26, 27, 29], BipartiteGraph with (31, 58) (𝑠,
𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    [31]
 52   ⋅    [31]
 53   ⋅    [29, 31]
 54   ⋅    [29, 31]
 55   ⋅    [28, 30]
 56   ⋅    [28, 30]
 57   ⋅    [29, 31]
 58   ⋅    [29, 31]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equat
ion[(u(t))[30] ~ 1.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[29
] - 0.06666666666666667(u(t))[28] - 0.3333333333333333(u(t))[31], (u(t))[1]
 ~ (u(t))[3] - 3.0(u(t))[2] - 0.2(u(t))[4]], [Int64[], Int64[]], Symbolics.
Equation[Differential(t)((u(t))[3]) ~ ((1.45(u(t))[5] - 2.9(u(t))[3] - 7.25
(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.
2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))
[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3]
 + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[
4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[2] - 14.
5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5
.0(u(t))[2] - 0.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2
(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (
13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t
))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) +
 (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (1.45(u(t))[3] + 
11.6(u(t))[2] + 0.29(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*((2.0(u(t))[3]
 - 5.0(u(t))[2] - 0.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] -
 0.2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2)
 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + 
(u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(
t))[2] - 0.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t)
)[4])^2))^2)) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1
.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u(t))[4])^2) + (1//4)*
((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t)
)[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4
])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(
t))[3])^2))^2)) + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(t))[5]
 - 3.3833333333333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*((2.0(u(t))[3
] - 5.0(u(t))[2] - 0.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] 
- 0.2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2
) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] +
 (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5]
 - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) 
+ (6.283333333333333(u(t))[2] + 0.19333333333333336(u(t))[4] - 6.2833333333
33334(u(t))[3]) / ((0.1 / ((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2]
 - 0.2(u(t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((
u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2))*((1.0e-6 + (13//12)*((2.0(u(t))[3] - 5.0(u(t))[2] - 0.2(u(
t))[4])^2) + (1//4)*((4.0(u(t))[3] - 7.0(u(t))[2] - 0.2(u(t))[4])^2))^2)))*
(u(t))[3], Differential(t)((u(t))[4]) ~ ((3.3833333333333337(u(t))[3] - 0.9
666666666666667(u(t))[2] - 5.316666666666667(u(t))[4]) / ((0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + 
(u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t
))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + 
(u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^
2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] +
 (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(
t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u
(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (
u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (0.
9666666666666667(u(t))[6] + 5.316666666666667(u(t))[4] - 3.3833333333333337
(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[
3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5]
 - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 
4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t)
)[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.
25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t)
)[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[
5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] 
- 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 
2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t
))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))
[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6]
 - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t
))[5] - 2(u(t))[4])^2))^2)) + (7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]
) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + 
(1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t)
)[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5
])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u
(t))[2] - 4(u(t))[3])^2))^2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((3.
3833333333333337(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.316666666666667
(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4
])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6]
 - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.
9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//
12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*
((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5
] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] 
- 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))
[6] - 2(u(t))[5])^2))^2)) + (0.9666666666666667(u(t))[7] + 5.31666666666666
7(u(t))[5] - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(
t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))
^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13
//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t
))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2
(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.
9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u
(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 
4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (
2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] 
- 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) 
+ (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (
u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2
) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[7]
 - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] +
 (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4
(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6]
)^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)))*(u(t))[5], Di
fferential(t)((u(t))[6]) ~ ((2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) 
/ ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))
[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6]
 + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1/
/4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2)) + (3.3833333333333337(u(t))[5] - 0.966666666666
6667(u(t))[4] - 5.316666666666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] -
 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) +
 (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 
4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (
5.316666666666667(u(t))[6] + 0.9666666666666667(u(t))[8] - 3.38333333333333
37(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13/
/12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[
6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] 
- 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(
t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 
7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t
))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t)
)[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8
] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((
u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] 
- 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[
8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u
(t))[7] - 2(u(t))[6])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7
]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + 
(13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t
))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[
7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u
(t))[6])^2))^2)))*(u(t))[6], Differential(t)((u(t))[7]) ~ ((3.3833333333333
337(u(t))[6] - 0.9666666666666667(u(t))[5] - 5.316666666666667(u(t))[7]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6
] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] +
 (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^
2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))
[5] - 4(u(t))[6])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) 
/ ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[
6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13
//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t
))[5] - 4(u(t))[6])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))
[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8]
)^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t
))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t)
)[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9
] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//
4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u
(t))[8])^2))^2)) + (0.9666666666666667(u(t))[9] + 5.316666666666667(u(t))[7
] - 3.3833333333333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - 
(u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((
3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2
(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[6
] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] -
 (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 
4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12
)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)))*(u(t))[7], Differential(t)
((u(t))[8]) ~ ((7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1
.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t
))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//
12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u
(t))[7])^2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((
3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + 
(13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10
] - 4(u(t))[9])^2))^2)) + (3.3833333333333337(u(t))[7] - 0.9666666666666667
(u(t))[6] - 5.316666666666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(
t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4
(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(
t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t
))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(
u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.
9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] 
- 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4
(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (
u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2
) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] 
+ 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] +
 (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12
)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(t))
[10] + 5.316666666666667(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / 
((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(
u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^
2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (1
3//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] 
- 4(u(t))[9])^2))^2)))*(u(t))[8], Differential(t)((u(t))[9]) ~ ((2.9(u(t))[
9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9
] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))
[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[
10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t)
)[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(
u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (1.
45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)
*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[
11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7
] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[
8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(
t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])
^2))^2)) + (3.3833333333333337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.3
16666666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))
[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2)
)^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + 
(13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u
(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2
) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] 
+ 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] +
 (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10]
)^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[1
0] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (
13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[8] - 14
.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2
) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] -
 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//
12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (5.316666666666667(u(t
))[9] + 0.9666666666666667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11]
 - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^
2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13
//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u
(t))[11] - 4(u(t))[10])^2))^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ (
(5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t)
)[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))
[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] 
- (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))
 + (7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13
//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u
(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u
(t))[9])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*
((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[1
1])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 
+ (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[1
0] + (u(t))[12] - 4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[9] - 0.9
666666666666667(u(t))[8] - 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10]
 + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (
u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//
4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] 
- 4(u(t))[9])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//
4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))
[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e
-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2))^2)) + (0.9666666666666667(u(t))[12] + 5.31666666666666
7(u(t))[10] - 3.3833333333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(
((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8]
 - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12]
 - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t)
)[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))
[11])^2))^2)))*(u(t))[10], Differential(t)((u(t))[11]) ~ ((2.9(u(t))[11] + 
7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - 
(u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13
//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + 
(u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[1
1] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^
2)) + (3.3833333333333337(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.31666
6666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t
))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] 
- 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9
(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[
9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12
])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((
u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10
] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^
2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] 
- 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2
) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + 
(1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(
((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))
[11])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((
3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[1
1])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[1
2])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[
11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (5.316666666666667(u(t))[11] + 0.
9666666666666667(u(t))[13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e
-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[
12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[
13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2
) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (
u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~
 ((5.316666666666667(u(t))[12] + 0.9666666666666667(u(t))[14] - 3.383333333
3333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2
) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t)
)[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] -
 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t
))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (2.
9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t)
)[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t
))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*
((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] 
- 4(u(t))[11])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) 
/ ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t
))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(
t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] 
- 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14]
 - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)
*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(
u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t)
)[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*
((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12
)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t
))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^
2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (3.3833333
333333337(u(t))[11] - 0.9666666666666667(u(t))[10] - 5.316666666666667(u(t)
)[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)
*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12
)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t
))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(
t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) +
 (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] 
- 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] 
- (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + 
(1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12]
 + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t)
)[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t
))[12]  …  Differential(t)((u(t))[22]) ~ ((3.3833333333333337(u(t))[21] - 0
.9666666666666667(u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t)
)[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2
) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] +
 (u(t))[22] - 2(u(t))[21])^2))^2)) + (5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(
u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))
[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + 
(u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + 
(u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))
[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*((
(u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))
[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[2
0] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((
u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (7.25(u(t))[21
] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[2
2] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(
u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[2
2] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u
(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[2
1])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*((
(u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[2
3])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[
22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[24] + 5
.316666666666667(u(t))[22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t)
)[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2
))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2
) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] +
 (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], Differential(t)((u(t))[23])
 ~ ((3.3833333333333337(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.316666
666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])
^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(
t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25]
 - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u
(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (
5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t
))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(
t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12
)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])
^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))
[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t)
)[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^
2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^
2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2))^2)) + (5.316666666666667(u(t))[23] + 0.9666666666666667(u(
t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])
^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t
))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] 
+ (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] 
+ (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21]
 + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t
))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t
))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.
0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(
t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (1.45(u(t))[25] - 2.9(u(t))[2
3] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])
^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(
t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25]
 - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(
t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u
(t))[23], Differential(t)((u(t))[24]) ~ ((1.45(u(t))[26] - 2.9(u(t))[24] - 
7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) +
 (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 
+ (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[2
4] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[
22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(
u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[
25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(
u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(
((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[
26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))
[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*((
(u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4
(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((
0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1/
/4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + 
(u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (
u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*(
(1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u
(t))[25] - 2(u(t))[24])^2))^2)) + (3.3833333333333337(u(t))[23] - 0.9666666
666666667(u(t))[22] - 5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(
u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2
(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 
0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1/
/4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[
22] - 4(u(t))[23])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((
u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((
(u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[2
6] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[
24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2)
)^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[2
3] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.
316666666666667(u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-
6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))
[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 
4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2)
 + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13
//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + 
(u(t))[26] - 4(u(t))[25])^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) 
~ ((7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] 
+ (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25]
 + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t
))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (1
3//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t)
)[25] - 2(u(t))[24])^2))^2)) + (5.316666666666667(u(t))[25] + 0.96666666666
66667(u(t))[27] - 3.3833333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(
t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u
(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12
)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27]
 - 4(u(t))[26])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26])
 / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) +
 (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26]
 - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27
] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4
)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u
(t))[24] - 0.9666666666666667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13/
/12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(
u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2
(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*((
(u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t)
)[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[2
3] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2
) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) +
 (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (2.9(u(t))[24]
 - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25
] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u
(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + 
(13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25
] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t
))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(
t))[25], Differential(t)((u(t))[26]) ~ ((2.9(u(t))[26] + 7.25(u(t))[25] - 1
.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(
u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0
.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//
4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u
(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[2
5])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (5.8(u(
t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((
u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24
] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[2
8] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u
(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25]
 - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2
)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26
] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[2
6] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u
(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + 
(13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(
t))[28] - 4(u(t))[27])^2))^2)) + (5.316666666666667(u(t))[26] + 0.966666666
6666667(u(t))[28] - 3.3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (
u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + 
(u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[
27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//
12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*((
(u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[2
8] - 4(u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[25] - 0.9666666666666
667(u(t))[24] - 5.316666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)*
(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))
[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t)
)[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(
((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 
4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1
//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] +
 (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - 
(u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~
 ((3.3833333333333337(u(t))[26] - 0.9666666666666667(u(t))[25] - 5.31666666
6666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (
13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] -
 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t)
)[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (1.
45(u(t))[29] - 2.9(u(t))[27] - 7.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12
)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t
))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t
))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)
*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] 
- 4(u(t))[28])^2))^2)) + (0.9666666666666667(u(t))[29] + 5.316666666666667(
u(t))[27] - 3.3833333333333337(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u
(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27
] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28]
)^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u
(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2
7] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u
(t))[28])^2))^2)) + (7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//
12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u
(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(
u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((
1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((
u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))
[27] - 2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25
] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u
(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((
u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29
] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (2.9(u(t))[26] 
- 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27
] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(
t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(
t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26]
 + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t)
)[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)))*(u(t
))[27], Differential(t)((u(t))[28]) ~ ((3.3833333333333337(u(t))[27] - 0.96
66666666666667(u(t))[26] - 5.316666666666667(u(t))[28]) / ((0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29]
 - 2(u(t))[28])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (
1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.66
66666666666667(u(t))[29])^2) + (1//4)*((1.0666666666666667 / (1 + t) + 2.93
3333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 3.6666666666666665
(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4
(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t
))[28] - 2.9(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[
26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*((
(u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
(1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333
333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((1.0666666666
666667 / (1 + t) + 2.933333333333333(u(t))[28] - 0.3333333333333333(u(t))[3
1] - 3.6666666666666665(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] -
 (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2))
 + (2.9(u(t))[28] + 7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] 
+ (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] -
 (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.933333333333
3333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29
])^2) + (1//4)*((1.0666666666666667 / (1 + t) + 2.933333333333333(u(t))[28]
 - 0.3333333333333333(u(t))[31] - 3.6666666666666665(u(t))[29])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u
(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[2
9] - 14.5(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])
^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[2
8] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//
4)*((1.0666666666666667 / (1 + t) + 2.933333333333333(u(t))[28] - 0.3333333
333333333(u(t))[31] - 3.6666666666666665(u(t))[29])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[
26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u
(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + 
(1.5466666666666666 / (1 + t) - 0.4833333333333333(u(t))[31] - 2.9966666666
666666(u(t))[28] - 6.766666666666667(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t
))[28])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) +
 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666
666667(u(t))[29])^2) + (1//4)*((1.0666666666666667 / (1 + t) + 2.9333333333
33333(u(t))[28] - 0.3333333333333333(u(t))[31] - 3.6666666666666665(u(t))[2
9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[2
7])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6
 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] -
 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*(
(1.0666666666666667 / (1 + t) + 2.933333333333333(u(t))[28] - 0.33333333333
33333(u(t))[31] - 3.6666666666666665(u(t))[29])^2))^2)) + (1.03111111111111
1 / (1 + t) + 5.252222222222223(u(t))[28] - 3.061111111111112(u(t))[29] - 0
.3222222222222222(u(t))[31]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u
(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[2
7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//1
2)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//
12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.33333
33333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((1.06666
66666666667 / (1 + t) + 2.933333333333333(u(t))[28] - 0.3333333333333333(u(
t))[31] - 3.6666666666666665(u(t))[29])^2))^2))*((1.0e-6 + (13//12)*((1.066
6666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333
(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((1.0666666666666667
 / (1 + t) + 2.933333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 3
.6666666666666665(u(t))[29])^2))^2)))*(u(t))[28], Differential(t)((u(t))[29
]) ~ ((2.9(u(t))[29] + 7.25(u(t))[28] - 1.45(u(t))[27]) / ((0.3 / ((1.0e-6 
+ (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[2
9] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.06666
66666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333(u
(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((-1.0666666666666667 
/ (1 + t) + 0.3333333333333333(u(t))[31] + 1.0666666666666667(u(t))[28] - 0
.3333333333333333(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-2.133333
3333333333 / (1 + t) + 0.13333333333333333(u(t))[28] + 0.33333333333333337(
u(t))[29] + 1.6666666666666665(u(t))[31])^2) + (1//4)*((-4.266666666666667 
/ (1 + t) + 0.26666666666666666(u(t))[28] + 1.6666666666666667(u(t))[29] + 
2.333333333333333(u(t))[31])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(
t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28]
)^2))^2)) + (3.3833333333333337(u(t))[28] - 0.9666666666666667(u(t))[27] - 
5.316666666666667(u(t))[29]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (
u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[2
8])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9
333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.66666666666666
67(u(t))[29])^2) + (1//4)*((-1.0666666666666667 / (1 + t) + 0.3333333333333
333(u(t))[31] + 1.0666666666666667(u(t))[28] - 0.3333333333333333(u(t))[29]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0.13
333333333333333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.6666666666666
665(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.2666666666666
6666(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.333333333333333(u(t))[31]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) +
 (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (-3.60888888888
88895 / (1 + t) + 0.2255555555555556(u(t))[28] + 2.0944444444444446(u(t))[3
1] + 4.18888888888889(u(t))[29]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27]
 + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t
))[28])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) +
 0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666
666667(u(t))[29])^2) + (1//4)*((-1.0666666666666667 / (1 + t) + 0.333333333
3333333(u(t))[31] + 1.0666666666666667(u(t))[28] - 0.3333333333333333(u(t))
[29])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 
0.13333333333333333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.666666666
6666665(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.266666666
66666666(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.333333333333333(u(t))
[31])^2))^2))*((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0.13333
333333333333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.6666666666666665
(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.2666666666666666
6(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.333333333333333(u(t))[31])^2
))^2)) + (-7.733333333333333 / (1 + t) + 0.48333333333333334(u(t))[28] + 3.
8666666666666663(u(t))[31] - 5.316666666666666(u(t))[29]) / ((0.1 / ((1.0e-
6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))
[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.066
6666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.3333333333333333
(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((-1.066666666666666
7 / (1 + t) + 0.3333333333333333(u(t))[31] + 1.0666666666666667(u(t))[28] -
 0.3333333333333333(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((-2.1333
333333333333 / (1 + t) + 0.13333333333333333(u(t))[28] + 0.3333333333333333
7(u(t))[29] + 1.6666666666666665(u(t))[31])^2) + (1//4)*((-4.26666666666666
7 / (1 + t) + 0.26666666666666666(u(t))[28] + 1.6666666666666667(u(t))[29] 
+ 2.333333333333333(u(t))[31])^2))^2))*((1.0e-6 + (13//12)*((-2.13333333333
33333 / (1 + t) + 0.13333333333333333(u(t))[28] + 0.33333333333333337(u(t))
[29] + 1.6666666666666665(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 
+ t) + 0.26666666666666666(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.333
333333333333(u(t))[31])^2))^2)) + (-3.0933333333333333 / (1 + t) + 0.966666
6666666666(u(t))[31] + 5.993333333333333(u(t))[28] + 13.533333333333333(u(t
))[29]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[2
8])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((
1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))
[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1
//4)*((-1.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[31] + 1.066
6666666666667(u(t))[28] - 0.3333333333333333(u(t))[29])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0.13333333333333333(u(t))
[28] + 0.33333333333333337(u(t))[29] + 1.6666666666666665(u(t))[31])^2) + (
1//4)*((-4.266666666666667 / (1 + t) + 0.26666666666666666(u(t))[28] + 1.66
66666666666667(u(t))[29] + 2.333333333333333(u(t))[31])^2))^2))*((1.0e-6 + 
(13//12)*((1.0666666666666667 / (1 + t) + 0.9333333333333333(u(t))[28] - 0.
3333333333333333(u(t))[31] - 1.6666666666666667(u(t))[29])^2) + (1//4)*((-1
.0666666666666667 / (1 + t) + 0.3333333333333333(u(t))[31] + 1.066666666666
6667(u(t))[28] - 0.3333333333333333(u(t))[29])^2))^2)) + (-6.18666666666666
65 / (1 + t) + 3.2866666666666666(u(t))[28] + 1.9333333333333331(u(t))[31] 
- 16.433333333333334(u(t))[29]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] 
+ (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t)
)[28])^2))^2) + 0.6 / ((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 
0.9333333333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.66666666666
66667(u(t))[29])^2) + (1//4)*((-1.0666666666666667 / (1 + t) + 0.3333333333
333333(u(t))[31] + 1.0666666666666667(u(t))[28] - 0.3333333333333333(u(t))[
29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((-2.1333333333333333 / (1 + t) + 0
.13333333333333333(u(t))[28] + 0.33333333333333337(u(t))[29] + 1.6666666666
666665(u(t))[31])^2) + (1//4)*((-4.266666666666667 / (1 + t) + 0.2666666666
6666666(u(t))[28] + 1.6666666666666667(u(t))[29] + 2.333333333333333(u(t))[
31])^2))^2))*((1.0e-6 + (13//12)*((1.0666666666666667 / (1 + t) + 0.9333333
333333333(u(t))[28] - 0.3333333333333333(u(t))[31] - 1.6666666666666667(u(t
))[29])^2) + (1//4)*((-1.0666666666666667 / (1 + t) + 0.3333333333333333(u(
t))[31] + 1.0666666666666667(u(t))[28] - 0.3333333333333333(u(t))[29])^2))^
2)))*(u(t))[29], 0 ~ 2.2(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 1.6(u(t))[2]
 - 2.04(u(t))[4], 0 ~ -1.0666666666666667 / (1 + t) + 0.5333333333333333(u(
t))[31] + 1.6666666666666667(u(t))[29] + (u(t))[27] - 0.2(u(t))[26] - 1.933
3333333333333(u(t))[28]]))), [0.05172413793103448, 0.08620689655172414, 0.1
206896551724138, 0.15517241379310345, 0.1896551724137931, 0.224137931034482
76, 0.25862068965517243, 0.29310344827586204, 0.3275862068965517, 0.3620689
655172414  …  0.7068965517241379, 0.7413793103448276, 0.7758620689655172, 0
.8103448275862069, 0.8448275862068966, 0.8793103448275862, 0.91379310344827
59, 0.9482758620689655, 0.017241379310344827, 1.0172413793103448], (0.0, 20
.0), SciMLBase.NullParameters(), Base.Pairs{Symbol, Union{}, Tuple{}, Named
Tuple{(), Tuple{}}}(), SciMLBase.StandardODEProblem())

Work-Precision Plot for Burgers Equation, Dirichlet BCs

dummy_appxsol = [nothing for i in 1:length(probs1)]
abstols = 1.0 ./ 10.0 .^ (5:8)
reltols = 1.0 ./ 10.0 .^ (1:4);
setups = [Dict(:alg => solver, :prob_choice => 1),
    Dict(:alg => solver, :prob_choice => 2),
    Dict(:alg => solver, :prob_choice => 3),
    Dict(:alg => solver, :prob_choice => 4),
    Dict(:alg => solver, :prob_choice => 5),
    Dict(:alg => solver, :prob_choice => 6),]
names = ["Uniform Upwind, center_align", "Uniform Upwind, edge_align", "Nonuniform Upwind, center_align",
         "Nonuniform Upwind, edge_align", "WENO, center_align", "WENO, edge_align"];

wp = WorkPrecisionSet(probs1, abstols, reltols, setups; names=names,
    save_everystep=false, appxsol = dummy_appxsol, maxiters=Int(1e5),
    numruns=10, wrap=Val(false))
plot(wp)
Error: MethodError: no method matching getindex(::Nothing, ::Symbol)

Here are the problems for pdesys2:

probupwind1 = discretize(pdesys2, discupwind1; analytic=analytic)
probupwind2 = discretize(pdesys2, discupwind2; analytic=analytic)

probweno1 = discretize(pdesys2, discweno1; analytic=analytic)
probweno2 = discretize(pdesys2, discweno2; analytic=analytic)

probnu1 = discretize(pdesys2, discnu1; analytic=analytic)
probnu2 = discretize(pdesys2, discnu2; analytic=analytic)

probs2 = [probupwind1, probupwind2, probnu1, probnu2, probweno1, probweno2]
6-element Vector{SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float
64}, true, SciMLBase.NullParameters, F, Base.Pairs{Symbol, Union{}, Tuple{}
, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem} where F}:
 SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, SciML
Base.NullParameters, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, 
ModelingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0x0db18bcb, 0x949f42bb, 0xaf6bbc2d, 0xfe980671, 0xe
52b7f6d)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋a
rg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x166a1f18, 0x08ae4c85, 0x06a14c5b, 0x4ede9207, 0xa7067a0c)}
}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbo
l, Nothing, ModelingToolkit.var"#472#generated_observed#471"{Bool, Modeling
Toolkit.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}, Ba
se.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.Stan
dardODEProblem}(SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, Model
ingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x0db18bcb, 0x949f42bb, 0xaf6bbc2d, 0xfe980671, 0xe52b7f
6d)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x166a1f18, 0x08ae4c85, 0x06a14c5b, 0x4ede9207, 0xa7067a0c)}}, Li
nearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, No
thing, ModelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolk
it.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}(Modeling
Toolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x0db18bcb, 0x949f42bb, 0xaf6bbc2d, 0xfe980671, 0xe52b7f6d)
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋
arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0x166a1f18, 0x08ae4c85, 0x06a14c5b, 0x4ede9207, 0xa7067a0c)}}(Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x0db18bcb
, 0x949f42bb, 0xaf6bbc2d, 0xfe980671, 0xe52b7f6d)}(quote
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (+)((+)((/)(0.022988505747126436, (+)(1, t)),
 (*)(-0.3333333333333333, (getindex)(ˍ₋arg1, 27))), (*)(1.3333333333333333,
 (getindex)(ˍ₋arg1, 28)))
            var"(u(t))[1]" = (+)((+)((/)(-0.022988505747126436, (+)(1, t)),
 (*)(-0.3333333333333333, (getindex)(ˍ₋arg1, 2))), (*)(1.3333333333333333, 
(getindex)(ˍ₋arg1, 1)))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
                (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, 
Val{1}(), Val{(28,)}(), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1), 0)
                            (*)((+)((*)(-29.0, var"(u(t))[1]"), (*)(29.0, (
getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1, 1))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1)), (*)(
29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1)), (*)(
29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 2))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2)), (*)(
29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2)), (*)(
29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 3))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3)), (*)(
29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 3))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3)), (*)(
29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 4))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4)), (*)(
29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 4))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4)), (*)(
29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 5))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5)), (*)(
29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5)), (*)(
29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 6))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6)), (*)(
29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 6))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6)), (*)(
29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 7))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7)), (*)(
29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7)), (*)(
29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 8))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8)), (*)(
29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8)), (*)(
29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 9))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9)), (*)(
29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 9))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9)), (*)(
29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 10))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 10)), (*)
(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 10)), (*)
(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 11))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 11)), (*)
(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 11)), (*)
(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 12))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 12)), (*)
(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 12)), (*)
(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 13))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 13)), (*)
(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 13))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 13)), (*)
(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 14))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 14)), (*)
(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 14)), (*)
(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 15))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 15)), (*)
(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 15)), (*)
(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 16))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 16)), (*)
(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 16)), (*)
(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 17))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 17)), (*)
(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 17)), (*)
(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 18))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 18)), (*)
(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 18))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 18)), (*)
(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 19))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 19)), (*)
(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 19)), (*)
(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 20))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 20)), (*)
(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 20))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 20)), (*)
(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 21))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 21)), (*)
(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 21))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 21)), (*)
(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 22))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 22)), (*)
(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 22)), (*)
(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 23))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 23)), (*)
(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 23))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 23)), (*)
(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 24))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 24)), (*)
(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 24)), (*)
(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 25))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 25)), (*)
(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 25)), (*)
(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 26))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 26)), (*)
(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 26))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 26)), (*)
(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 27))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 27)), (*)
(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 27))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 27)), (*)
(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 28))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 28)), (*)
(29.0, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 28))
                        end))
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x166a1f18, 0x08ae4c85, 0x06a14c5b, 0x4ede9207, 0xa7067a0c)}(quot
e
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (+)((+)((/)(0.022988505747126436, (+)(1, t)),
 (*)(-0.3333333333333333, (getindex)(ˍ₋arg1, 27))), (*)(1.3333333333333333,
 (getindex)(ˍ₋arg1, 28)))
            var"(u(t))[1]" = (+)((+)((/)(-0.022988505747126436, (+)(1, t)),
 (*)(-0.3333333333333333, (getindex)(ˍ₋arg1, 2))), (*)(1.3333333333333333, 
(getindex)(ˍ₋arg1, 1)))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/Symbolics/FGTCH/src/build_function.jl:519 =#
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds
 begin
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1),
 0)
                                    (*)((+)((*)(-29.0, var"(u(t))[1]"), (*)
(29.0, (getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1, 1))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
)), (*)(29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1))
                                end)
                        ˍ₋out[2] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
)), (*)(29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 2))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
)), (*)(29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2))
                                end)
                        ˍ₋out[3] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
)), (*)(29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 3))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3
)), (*)(29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 3))
                                end)
                        ˍ₋out[4] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3
)), (*)(29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 4))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4
)), (*)(29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 4))
                                end)
                        ˍ₋out[5] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4
)), (*)(29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 5))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5
)), (*)(29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5))
                                end)
                        ˍ₋out[6] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5
)), (*)(29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 6))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6
)), (*)(29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 6))
                                end)
                        ˍ₋out[7] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6
)), (*)(29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 7))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7
)), (*)(29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7))
                                end)
                        ˍ₋out[8] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7
)), (*)(29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 8))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8
)), (*)(29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8))
                                end)
                        ˍ₋out[9] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8
)), (*)(29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 9))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9
)), (*)(29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 9))
                                end)
                        ˍ₋out[10] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9
)), (*)(29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 10))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
0)), (*)(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10))
                                end)
                        ˍ₋out[11] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
0)), (*)(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 11))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
1)), (*)(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11))
                                end)
                        ˍ₋out[12] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
1)), (*)(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 12))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
2)), (*)(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12))
                                end)
                        ˍ₋out[13] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
2)), (*)(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 13))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
3)), (*)(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 13))
                                end)
                        ˍ₋out[14] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
3)), (*)(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 14))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
4)), (*)(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14))
                                end)
                        ˍ₋out[15] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
4)), (*)(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 15))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
5)), (*)(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15))
                                end)
                        ˍ₋out[16] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
5)), (*)(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 16))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
6)), (*)(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16))
                                end)
                        ˍ₋out[17] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
6)), (*)(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 17))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
7)), (*)(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17))
                                end)
                        ˍ₋out[18] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
7)), (*)(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 18))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
8)), (*)(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 18))
                                end)
                        ˍ₋out[19] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
8)), (*)(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 19))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
9)), (*)(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19))
                                end)
                        ˍ₋out[20] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
9)), (*)(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 20))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
0)), (*)(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 20))
                                end)
                        ˍ₋out[21] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
0)), (*)(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 21))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
1)), (*)(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 21))
                                end)
                        ˍ₋out[22] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
1)), (*)(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 22))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
2)), (*)(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22))
                                end)
                        ˍ₋out[23] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
2)), (*)(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 23))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
3)), (*)(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 23))
                                end)
                        ˍ₋out[24] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
3)), (*)(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 24))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
4)), (*)(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24))
                                end)
                        ˍ₋out[25] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
4)), (*)(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 25))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
5)), (*)(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25))
                                end)
                        ˍ₋out[26] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
5)), (*)(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 26))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
6)), (*)(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 26))
                                end)
                        ˍ₋out[27] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
6)), (*)(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 27))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
7)), (*)(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 27))
                                end)
                        ˍ₋out[28] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
7)), (*)(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 28))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
8)), (*)(29.0, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 28))
                                end)
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing,
 nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("ge
tindex(u(t), 2)"), Symbol("getindex(u(t), 3)"), Symbol("getindex(u(t), 4)")
, Symbol("getindex(u(t), 5)"), Symbol("getindex(u(t), 6)"), Symbol("getinde
x(u(t), 7)"), Symbol("getindex(u(t), 8)"), Symbol("getindex(u(t), 9)"), Sym
bol("getindex(u(t), 10)"), Symbol("getindex(u(t), 11)")  …  Symbol("getinde
x(u(t), 20)"), Symbol("getindex(u(t), 21)"), Symbol("getindex(u(t), 22)"), 
Symbol("getindex(u(t), 23)"), Symbol("getindex(u(t), 24)"), Symbol("getinde
x(u(t), 25)"), Symbol("getindex(u(t), 26)"), Symbol("getindex(u(t), 27)"), 
Symbol("getindex(u(t), 28)"), Symbol("getindex(u(t), 29)")], :t, nothing, M
odelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolkit.ODESy
stem, Dict{Any, Any}}(false, Core.Box(Symbolics.Equation[(u(t))[30] ~ 0.022
988505747126436 / (1 + t) + 1.3333333333333333(u(t))[29] - 0.33333333333333
33(u(t))[28], (u(t))[1] ~ -0.022988505747126436 / (1 + t) + 1.3333333333333
333(u(t))[2] - 0.3333333333333333(u(t))[3]]), ModelingToolkit.ODESystem(Sym
bolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (29.0(u
(t))[2] - 29.0(u(t))[1])*(u(t))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[
2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 2
9.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differ
ential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3
])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[4]), Differential(t)((
u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5
], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~
 -ifelse((u(t))[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(
t))[7] - 29.0(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u
(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29
.0(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0
, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8]
)*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t
))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9
]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] -
 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), 
Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.
0(u(t))[10])*(u(t))[11], (29.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  
Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (29.0(u(t))[20] - 29.
0(u(t))[19])*(u(t))[20], (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[20]), Dif
ferential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u
(t))[20])*(u(t))[21], (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differ
ential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t)
)[21])*(u(t))[22], (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Different
ial(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[2
2])*(u(t))[23], (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[23]), Differential
(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])
*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)
((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u
(t))[25], (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u
(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t)
)[26], (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t)
)[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[2
7], (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[2
8]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28],
 (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29])
 ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (2
9.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[29])], t, SymbolicUtils.Term{Real, N
othing}[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (
u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[20], (u(t))[21], (u(
t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))
[28], (u(t))[29]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equa
tion[(u(t))[30] ~ 0.022988505747126436 / (1 + t) + 1.3333333333333333(u(t))
[29] - 0.3333333333333333(u(t))[28], (u(t))[1] ~ -0.022988505747126436 / (1
 + t) + 1.3333333333333333(u(t))[2] - 0.3333333333333333(u(t))[3]], Base.Re
fValue{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{S
ymbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef
, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef,
 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 
0, 0)), :pdesys2, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] =>
 0.5517241379310345, (u(t))[18] => 0.5862068965517241, (u(t))[8] => 0.24137
93103448276, (u(t))[10] => 0.3103448275862069, (u(t))[27] => 0.896551724137
931, (u(t))[28] => 0.9310344827586207, (u(t))[2] => 0.034482758620689655, (
u(t))[24] => 0.7931034482758621, (u(t))[30] => 1.0, (u(t))[21] => 0.6896551
724137931…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousC
allback[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[], Sy
mbolics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfL
ines.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLin
es.CenterAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.Cent
erAlignedGrid, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDE
System, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodO
fLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}(MethodOfLines.V
ariableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataTyp
e, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, A
ny}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{Sym
bolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{Symbolic
Utils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), Symbolic
Utils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtil
s.Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64,
 SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict
{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbol
ics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5]
, (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u
(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t)
)[28], (u(t))[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.Immutabl
eDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, 
Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0), D
ict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLe
n{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int6
4}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.I
mmutableDict{DataType, Any}}, Float64}(x => 0.034482758620689655), Dict{Sym
bolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{
1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{Sym
bolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{
1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), MethodO
fLines.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodOfLines.S
calarizedDiscretization}(Dict{Symbolics.Num, Int64}(x => 30), t, 2, MethodO
fLines.UpwindScheme(1), MethodOfLines.CenterAlignedGrid(), true, false, Met
hodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{},
 NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equation[
Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics
.Equation[u(0, x) ~ x, Differential(x)(u(t, 0.0)) ~ 1 / (1 + t), Differenti
al(x)(u(t, 1.0)) ~ 1 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDo
mainPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbol
ics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any
, Any}(), nothing, Any[], :pdesys2, nothing), false, Base.RefValue{Any}(not
hing)), ModelingToolkit.SystemStructures.TearingState{ModelingToolkit.ODESy
stem}(ModelingToolkit.ODESystem(Symbolics.Equation[Differential(t)((u(t))[2
]) ~ -ifelse((u(t))[2] > 0, (29.0(u(t))[2] - 29.0(u(t))[1])*(u(t))[2], (29.
0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifels
e((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] 
- 29.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4]
 > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t)
)[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0
(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t)
)[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[6] -
 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), Diff
erential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))
[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Differential(t)
((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))
[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9])
 ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(
u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifels
e((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[
11] - 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u
(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))[12]
 - 29.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u
(t))[20] > 0, (29.0(u(t))[20] - 29.0(u(t))[19])*(u(t))[20], (29.0(u(t))[21]
 - 29.0(u(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(t)
)[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t))[22] - 
29.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[2
2] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[23] - 29.
0(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] 
> 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24] - 29.0(u
(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0
, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t)
)[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (
29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] - 29.0(u(t))[2
5])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.
0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u(t))[26])
*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u
(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t))[27])*(u
(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t)
)[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t)
)[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[2
9] - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[2
9])], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4],
 (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[
11]  …  (u(t))[20], (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[
25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29]], Any[], Dict{Any, Any}
(:u => u(t)), Any[], Symbolics.Equation[(u(t))[30] ~ 0.022988505747126436 /
 (1 + t) + 1.3333333333333333(u(t))[29] - 0.3333333333333333(u(t))[28], (u(
t))[1] ~ -0.022988505747126436 / (1 + t) + 1.3333333333333333(u(t))[2] - 0.
3333333333333333(u(t))[3]], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.
Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefVal
ue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics
.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.
Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys2, ModelingToolkit.ODESys
tem[], Dict{Any, Any}((u(t))[17] => 0.5517241379310345, (u(t))[18] => 0.586
2068965517241, (u(t))[8] => 0.2413793103448276, (u(t))[10] => 0.31034482758
62069, (u(t))[27] => 0.896551724137931, (u(t))[28] => 0.9310344827586207, (
u(t))[2] => 0.034482758620689655, (u(t))[24] => 0.7931034482758621, (u(t))[
30] => 1.0, (u(t))[21] => 0.6896551724137931…), nothing, nothing, nothing, 
ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuo
usCallback(Symbolics.Equation[], Symbolics.Equation[])], ModelingToolkit.Sy
mbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}(), MethodOfLi
nes.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}, MethodOfLines.MOL
FiniteDifference{MethodOfLines.CenterAlignedGrid, MethodOfLines.ScalarizedD
iscretization}, ModelingToolkit.PDESystem, Base.RefValue{Any}, MethodOfLine
s.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1, MethodOfLines
.CenterAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUtils.S
ym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sym{R
eal, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Float64}}(x => (0.0
, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{Tupl
e, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataT
ype, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Re
al}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType,
 Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.ImmutableD
ict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.Immutable
Dict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[
2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t)
)[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))
[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30]]), Dict{Sy
mbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Floa
t64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}}(x 
=> 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.Immutab
leDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64},
 Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0), 
Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Float64}(x
 => 0.034482758620689655), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict
{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) =>
 CartesianIndices((30,))), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict
{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) =>
 CartesianIndices((30,)))), MethodOfLines.MOLFiniteDifference{MethodOfLines
.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretization}(Dict{Symbolics.
Num, Int64}(x => 30), t, 2, MethodOfLines.UpwindScheme(1), MethodOfLines.Ce
nterAlignedGrid(), true, false, MethodOfLines.ScalarizedDiscretization(), B
ase.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingTo
olkit.PDESystem(Symbolics.Equation[Differential(x)(u(t, x))*u(t, x) + Diffe
rential(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, Differential(x)(u
(t, 0.0)) ~ 1 / (1 + t), Differential(x)(u(t, 1.0)) ~ 1 / (1 + t)], Symboli
cs.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolics.Var
DomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x)], S
ciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[], :pdesys2, noth
ing), false, Base.RefValue{Any}(nothing)), nothing, ModelingToolkit.Substit
utions(Symbolics.Equation[(u(t))[30] ~ 0.022988505747126436 / (1 + t) + 1.3
333333333333333(u(t))[29] - 0.3333333333333333(u(t))[28], (u(t))[1] ~ -0.02
2988505747126436 / (1 + t) + 1.3333333333333333(u(t))[2] - 0.33333333333333
33(u(t))[3]], [Int64[], Int64[]], Symbolics.Equation[Differential(t)((u(t))
[2]) ~ -ifelse((u(t))[2] > 0, (0.6666666666666666 / (1 + t) + 9.66666666666
6666(u(t))[3] - 9.666666666666664(u(t))[2])*(u(t))[2], (29.0(u(t))[3] - 29.
0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0,
 (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[3])
*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u(t)
)[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[4])
, Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t))[5] - 29.0
(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5]), Different
ial(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5])*
(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), Differential(t)((u(t
))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7], 
(29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -i
felse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(t))
[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t)
)[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))[10] - 29.0
(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0
, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[11] - 29.0(u(t))
[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (2
9.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))[12] - 29.0(u(t))[11
])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (2
9.0(u(t))[20] - 29.0(u(t))[19])*(u(t))[20], (29.0(u(t))[21] - 29.0(u(t))[20
])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (29.0
(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t))[22] - 29.0(u(t))[21])*
(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (29.0(u(
t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[23] - 29.0(u(t))[22])*(u(
t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (29.0(u(t))
[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))
[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (29.0(u(t))[24
] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[24
]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (29.0(u(t))[25] -
 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[25]),
 Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.0(u(t))[26] - 29
.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[26]), Di
fferential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u(t))[27] - 29.0(
u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[27]), Diffe
rential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t))[28] - 29.0(u(t
))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[28]), Differen
tial(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[29] - 29.0(u(t))[
28])*(u(t))[29], (0.6666666666666666 / (1 + t) + 9.666666666666664(u(t))[29
] - 9.666666666666666(u(t))[28])*(u(t))[29])])), Any[(u(t))[2], (u(t))[3], 
(u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10
], (u(t))[11]  …  Differential(t)((u(t))[20]), Differential(t)((u(t))[21]),
 Differential(t)((u(t))[22]), Differential(t)((u(t))[23]), Differential(t)(
(u(t))[24]), Differential(t)((u(t))[25]), Differential(t)((u(t))[26]), Diff
erential(t)((u(t))[27]), Differential(t)((u(t))[28]), Differential(t)((u(t)
)[29])], ModelingToolkit.SystemStructures.SystemStructure(ModelingToolkit.S
ystemStructures.DiffGraph(Union{Nothing, Int64}[29, 30, 31, 32, 33, 34, 35,
 36, 37, 38  …  nothing, nothing, nothing, nothing, nothing, nothing, nothi
ng, nothing, nothing, nothing], Union{Nothing, Int64}[nothing, nothing, not
hing, nothing, nothing, nothing, nothing, nothing, nothing, nothing  …  19,
 20, 21, 22, 23, 24, 25, 26, 27, 28]), ModelingToolkit.SystemStructures.Dif
fGraph(Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, n
othing, nothing, nothing, nothing, nothing  …  nothing, nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing, nothing], Union{Nothin
g, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, nothing, no
thing, nothing, nothing  …  nothing, nothing, nothing, nothing, nothing, no
thing, nothing, nothing, nothing, nothing]), BipartiteGraph with (28, 56) (
𝑠,𝑑)-vertices
   #  src      dst
  1   [1, 29]  [1]
  2   [2, 30]  [2]
  3   [3, 31]  [3]
  4   [4, 32]  [4]
  5   [5, 33]  [5]
  6   [6, 34]  [6]
  7   [7, 35]  [7]
  8   [8, 36]  [8]
  9   [9, 37]  [9]
  ⋮            
 48   ⋅        [20]
 49   ⋅        [21]
 50   ⋅        [22]
 51   ⋅        [23]
 52   ⋅        [24]
 53   ⋅        [25]
 54   ⋅        [26]
 55   ⋅        [27]
 56   ⋅        [28], BipartiteGraph with (30, 58) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    ∅
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    ∅
 55   ⋅    [30]
 56   ⋅    [30]
 57   ⋅    [29]
 58   ⋅    [30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[30] ~ 0.022988505747126436 / (1 + t) + 1.3333333333333333(u(t))[29] 
- 0.3333333333333333(u(t))[28], (u(t))[1] ~ -0.022988505747126436 / (1 + t)
 + 1.3333333333333333(u(t))[2] - 0.3333333333333333(u(t))[3]], [Int64[], In
t64[]], Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] >
 0, (0.6666666666666666 / (1 + t) + 9.666666666666666(u(t))[3] - 9.66666666
6666664(u(t))[2])*(u(t))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Di
fferential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t
))[2])*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(
t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t
))[4], (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5
]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.
0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifels
e((u(t))[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] 
- 29.0(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7]
 > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t)
)[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0
(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t)
)[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] -
 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Dif
ferential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u
(t))[9])*(u(t))[10], (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differe
ntial(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))
[10])*(u(t))[11], (29.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differe
ntial(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (29.0(u(t))[20] - 29.0(u(t))
[19])*(u(t))[20], (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[20]), Differenti
al(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20
])*(u(t))[21], (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(
t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*
(u(t))[22], (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)(
(u(t))[23]) ~ -ifelse((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(
t))[23], (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(
t))[24]) ~ -ifelse((u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))
[24], (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))
[25]) ~ -ifelse((u(t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25
], (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26
]) ~ -ifelse((u(t))[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], 
(29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) 
~ -ifelse((u(t))[27] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29
.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -
ifelse((u(t))[28] > 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(
u(t))[29] - 29.0(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ife
lse((u(t))[29] > 0, (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (0.666666
6666666666 / (1 + t) + 9.666666666666664(u(t))[29] - 9.666666666666666(u(t)
)[28])*(u(t))[29])])), Dict{Any, Any}()), nothing, ModelingToolkit.ODESyste
m(Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (2
9.0(u(t))[2] - 29.0(u(t))[1])*(u(t))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u
(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3
] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), D
ifferential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(
t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[4]), Differential
(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(
t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[
6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29
.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifel
se((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8]
 - 29.0(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8
] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t
))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.
0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(
t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[
10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[1
0]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] 
- 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])
  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (29.0(u(t))[20] 
- 29.0(u(t))[19])*(u(t))[20], (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[20])
, Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 2
9.0(u(t))[20])*(u(t))[21], (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), D
ifferential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0
(u(t))[21])*(u(t))[22], (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Diff
erential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(
t))[22])*(u(t))[23], (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[23]), Differe
ntial(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))
[23])*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[24]), Differenti
al(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24
])*(u(t))[25], (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[25]), Differential(
t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*
(u(t))[26], (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[26]), Differential(t)(
(u(t))[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(
t))[27], (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[27]), Differential(t)((u(
t))[28]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))
[28], (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[28]), Differential(t)((u(t))
[29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29
], (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[29])], t, SymbolicUtils.Term{Re
al, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[
7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[20], (u(t))[21]
, (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (
u(t))[28], (u(t))[29]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics
.Equation[(u(t))[30] ~ 0.022988505747126436 / (1 + t) + 1.3333333333333333(
u(t))[29] - 0.3333333333333333(u(t))[28], (u(t))[1] ~ -0.022988505747126436
 / (1 + t) + 1.3333333333333333(u(t))[2] - 0.3333333333333333(u(t))[3]], Ba
se.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Mat
rix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(
undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(u
ndef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(un
def, 0, 0)), :pdesys2, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[1
7] => 0.5517241379310345, (u(t))[18] => 0.5862068965517241, (u(t))[8] => 0.
2413793103448276, (u(t))[10] => 0.3103448275862069, (u(t))[27] => 0.8965517
24137931, (u(t))[28] => 0.9310344827586207, (u(t))[2] => 0.0344827586206896
55, (u(t))[24] => 0.7931034482758621, (u(t))[30] => 1.0, (u(t))[21] => 0.68
96551724137931…), nothing, nothing, nothing, ModelingToolkit.SymbolicContin
uousCallback[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[
], Symbolics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], Meth
odOfLines.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, Method
OfLines.CenterAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines
.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretization}, ModelingToolki
t.PDESystem, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(Me
thodOfLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}(MethodOfLi
nes.VariableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{Da
taType, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataTy
pe, Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dic
t{SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{Sym
bolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), Sym
bolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{Symboli
cUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{I
nt64, SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)),
 Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{S
ymbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t
))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21
], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], 
(u(t))[28], (u(t))[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.Imm
utableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float
64}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.
0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRa
ngeLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64},
 Int64}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, B
ase.ImmutableDict{DataType, Any}}, Float64}(x => 0.034482758620689655), Dic
t{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianInd
ices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dic
t{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianInd
ices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), Me
thodOfLines.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodOfLi
nes.ScalarizedDiscretization}(Dict{Symbolics.Num, Int64}(x => 30), t, 2, Me
thodOfLines.UpwindScheme(1), MethodOfLines.CenterAlignedGrid(), true, false
, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tup
le{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equa
tion[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symb
olics.Equation[u(0, x) ~ x, Differential(x)(u(t, 0.0)) ~ 1 / (1 + t), Diffe
rential(x)(u(t, 1.0)) ~ 1 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.
VarDomainPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], S
ymbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dic
t{Any, Any}(), nothing, Any[], :pdesys2, nothing), false, Base.RefValue{Any
}(nothing)), ModelingToolkit.SystemStructures.TearingState{ModelingToolkit.
ODESystem}(ModelingToolkit.ODESystem(Symbolics.Equation[Differential(t)((u(
t))[2]) ~ -ifelse((u(t))[2] > 0, (29.0(u(t))[2] - 29.0(u(t))[1])*(u(t))[2],
 (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -
ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t)
)[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t
))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0
(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, 
(29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*
(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))
[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]),
 Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(
u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Differenti
al(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(
u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(t)((u(t)
)[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (
29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -
ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u
(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifel
se((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.0(u(t)
)[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifel
se((u(t))[20] > 0, (29.0(u(t))[20] - 29.0(u(t))[19])*(u(t))[20], (29.0(u(t)
)[21] - 29.0(u(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse(
(u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t))[2
2] - 29.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(
t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[23] 
- 29.0(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))
[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24] - 2
9.0(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24
] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 29.0
(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] >
 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] - 29.0(u(
t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0,
 (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u(t))
[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (2
9.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t))[27
])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (29.0
(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[28])*
(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(
t))[29] - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30] - 29.0(u(t))[29])*(u(
t))[29])], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(t))[3], (u(t)
)[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u
(t))[11]  …  (u(t))[20], (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u
(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29]], Any[], Dict{Any,
 Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[30] ~ 0.022988505747126
436 / (1 + t) + 1.3333333333333333(u(t))[29] - 0.3333333333333333(u(t))[28]
, (u(t))[1] ~ -0.022988505747126436 / (1 + t) + 1.3333333333333333(u(t))[2]
 - 0.3333333333333333(u(t))[3]], Base.RefValue{Vector{Symbolics.Num}}(Symbo
lics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.R
efValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symb
olics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbo
lics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys2, ModelingToolkit.O
DESystem[], Dict{Any, Any}((u(t))[17] => 0.5517241379310345, (u(t))[18] => 
0.5862068965517241, (u(t))[8] => 0.2413793103448276, (u(t))[10] => 0.310344
8275862069, (u(t))[27] => 0.896551724137931, (u(t))[28] => 0.93103448275862
07, (u(t))[2] => 0.034482758620689655, (u(t))[24] => 0.7931034482758621, (u
(t))[30] => 1.0, (u(t))[21] => 0.6896551724137931…), nothing, nothing, noth
ing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicCon
tinuousCallback(Symbolics.Equation[], Symbolics.Equation[])], ModelingToolk
it.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}(), Metho
dOfLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}, MethodOfLine
s.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodOfLines.Scalar
izedDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{Any}, MethodO
fLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1, MethodOf
Lines.CenterAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUt
ils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUtils.
Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Float64}}(x =>
 (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType
{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{
DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tupl
e, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{Data
Type, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.Immut
ableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.Immu
tableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u
(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], 
(u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (
u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30]]), Di
ct{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen
{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64
}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.Im
mutableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Floa
t64}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1
.0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Float
64}(x => 0.034482758620689655), Dict{SymbolicUtils.Term{Real, Base.Immutabl
eDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, 
x) => CartesianIndices((30,))), Dict{SymbolicUtils.Term{Real, Base.Immutabl
eDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, 
x) => CartesianIndices((30,)))), MethodOfLines.MOLFiniteDifference{MethodOf
Lines.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretization}(Dict{Symbo
lics.Num, Int64}(x => 30), t, 2, MethodOfLines.UpwindScheme(1), MethodOfLin
es.CenterAlignedGrid(), true, false, MethodOfLines.ScalarizedDiscretization
(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), Model
ingToolkit.PDESystem(Symbolics.Equation[Differential(x)(u(t, x))*u(t, x) + 
Differential(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, Differential
(x)(u(t, 0.0)) ~ 1 / (1 + t), Differential(x)(u(t, 1.0)) ~ 1 / (1 + t)], Sy
mbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolic
s.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x
)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[], :pdesys2,
 nothing), false, Base.RefValue{Any}(nothing)), nothing, ModelingToolkit.Su
bstitutions(Symbolics.Equation[(u(t))[30] ~ 0.022988505747126436 / (1 + t) 
+ 1.3333333333333333(u(t))[29] - 0.3333333333333333(u(t))[28], (u(t))[1] ~ 
-0.022988505747126436 / (1 + t) + 1.3333333333333333(u(t))[2] - 0.333333333
3333333(u(t))[3]], [Int64[], Int64[]], Symbolics.Equation[Differential(t)((
u(t))[2]) ~ -ifelse((u(t))[2] > 0, (0.6666666666666666 / (1 + t) + 9.666666
666666666(u(t))[3] - 9.666666666666664(u(t))[2])*(u(t))[2], (29.0(u(t))[3] 
- 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3]
 > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t)
)[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (29.0
(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t)
)[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t))[5] -
 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5]), Diff
erential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[6] - 29.0(u(t))
[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), Differential(t)
((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))
[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8])
 ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], (29.0(
u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse(
(u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))[10] -
 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10
] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[11] - 29.0(
u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 
0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))[12] - 29.0(u(t
))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 
0, (29.0(u(t))[20] - 29.0(u(t))[19])*(u(t))[20], (29.0(u(t))[21] - 29.0(u(t
))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, 
(29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t))[22] - 29.0(u(t))[
21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (29
.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[23] - 29.0(u(t))[22]
)*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (29.0(
u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24] - 29.0(u(t))[23])*(
u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (29.0(u(t
))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t
))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (29.0(u(t))[
25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[
25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.0(u(t))[26]
 - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[26]
), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u(t))[27] - 
29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[27]), 
Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t))[28] - 29.
0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[28]), Dif
ferential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[29] - 29.0(u
(t))[28])*(u(t))[29], (0.6666666666666666 / (1 + t) + 9.666666666666664(u(t
))[29] - 9.666666666666666(u(t))[28])*(u(t))[29])])), Any[(u(t))[2], (u(t))
[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t
))[10], (u(t))[11]  …  Differential(t)((u(t))[20]), Differential(t)((u(t))[
21]), Differential(t)((u(t))[22]), Differential(t)((u(t))[23]), Differentia
l(t)((u(t))[24]), Differential(t)((u(t))[25]), Differential(t)((u(t))[26]),
 Differential(t)((u(t))[27]), Differential(t)((u(t))[28]), Differential(t)(
(u(t))[29])], ModelingToolkit.SystemStructures.SystemStructure(ModelingTool
kit.SystemStructures.DiffGraph(Union{Nothing, Int64}[29, 30, 31, 32, 33, 34
, 35, 36, 37, 38  …  nothing, nothing, nothing, nothing, nothing, nothing, 
nothing, nothing, nothing, nothing], Union{Nothing, Int64}[nothing, nothing
, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing  …
  19, 20, 21, 22, 23, 24, 25, 26, 27, 28]), ModelingToolkit.SystemStructure
s.DiffGraph(Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothi
ng, nothing, nothing, nothing, nothing, nothing  …  nothing, nothing, nothi
ng, nothing, nothing, nothing, nothing, nothing, nothing, nothing], Union{N
othing, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, nothin
g, nothing, nothing, nothing  …  nothing, nothing, nothing, nothing, nothin
g, nothing, nothing, nothing, nothing, nothing]), BipartiteGraph with (28, 
56) (𝑠,𝑑)-vertices
   #  src      dst
  1   [1, 29]  [1]
  2   [2, 30]  [2]
  3   [3, 31]  [3]
  4   [4, 32]  [4]
  5   [5, 33]  [5]
  6   [6, 34]  [6]
  7   [7, 35]  [7]
  8   [8, 36]  [8]
  9   [9, 37]  [9]
  ⋮            
 48   ⋅        [20]
 49   ⋅        [21]
 50   ⋅        [22]
 51   ⋅        [23]
 52   ⋅        [24]
 53   ⋅        [25]
 54   ⋅        [26]
 55   ⋅        [27]
 56   ⋅        [28], BipartiteGraph with (30, 58) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    ∅
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    ∅
 55   ⋅    [30]
 56   ⋅    [30]
 57   ⋅    [29]
 58   ⋅    [30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[30] ~ 0.022988505747126436 / (1 + t) + 1.3333333333333333(u(t))[29] 
- 0.3333333333333333(u(t))[28], (u(t))[1] ~ -0.022988505747126436 / (1 + t)
 + 1.3333333333333333(u(t))[2] - 0.3333333333333333(u(t))[3]], [Int64[], In
t64[]], Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] >
 0, (0.6666666666666666 / (1 + t) + 9.666666666666666(u(t))[3] - 9.66666666
6666664(u(t))[2])*(u(t))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Di
fferential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t
))[2])*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(
t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t
))[4], (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5
]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.
0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifels
e((u(t))[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] 
- 29.0(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7]
 > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t)
)[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0
(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t)
)[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] -
 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Dif
ferential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u
(t))[9])*(u(t))[10], (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differe
ntial(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))
[10])*(u(t))[11], (29.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differe
ntial(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (29.0(u(t))[20] - 29.0(u(t))
[19])*(u(t))[20], (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[20]), Differenti
al(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20
])*(u(t))[21], (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(
t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*
(u(t))[22], (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)(
(u(t))[23]) ~ -ifelse((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(
t))[23], (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(
t))[24]) ~ -ifelse((u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))
[24], (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))
[25]) ~ -ifelse((u(t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25
], (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26
]) ~ -ifelse((u(t))[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], 
(29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) 
~ -ifelse((u(t))[27] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29
.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -
ifelse((u(t))[28] > 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(
u(t))[29] - 29.0(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ife
lse((u(t))[29] > 0, (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (0.666666
6666666666 / (1 + t) + 9.666666666666664(u(t))[29] - 9.666666666666666(u(t)
)[28])*(u(t))[29])]))), [0.034482758620689655, 0.06896551724137931, 0.10344
827586206896, 0.13793103448275862, 0.1724137931034483, 0.20689655172413793,
 0.2413793103448276, 0.27586206896551724, 0.3103448275862069, 0.34482758620
68966  …  0.6551724137931034, 0.6896551724137931, 0.7241379310344828, 0.758
6206896551724, 0.7931034482758621, 0.8275862068965517, 0.8620689655172413, 
0.896551724137931, 0.9310344827586207, 0.9655172413793104], (0.0, 20.0), Sc
iMLBase.NullParameters(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(
), Tuple{}}}(), SciMLBase.StandardODEProblem())
 SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, SciML
Base.NullParameters, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, 
ModelingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0x11ee9b71, 0x5dc6a578, 0x335a0550, 0xbac2454b, 0xc
54727eb)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋a
rg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0xb36c9432, 0x6c4d0c52, 0x0a5e9fc8, 0xdced3a2f, 0xaccd7d2b)}
}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbo
l, Nothing, ModelingToolkit.var"#472#generated_observed#471"{Bool, Modeling
Toolkit.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}, Ba
se.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.Stan
dardODEProblem}(SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, Model
ingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x11ee9b71, 0x5dc6a578, 0x335a0550, 0xbac2454b, 0xc54727
eb)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0xb36c9432, 0x6c4d0c52, 0x0a5e9fc8, 0xdced3a2f, 0xaccd7d2b)}}, Li
nearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, No
thing, ModelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolk
it.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}(Modeling
Toolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x11ee9b71, 0x5dc6a578, 0x335a0550, 0xbac2454b, 0xc54727eb)
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋
arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0xb36c9432, 0x6c4d0c52, 0x0a5e9fc8, 0xdced3a2f, 0xaccd7d2b)}}(Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x11ee9b71
, 0x5dc6a578, 0x335a0550, 0xbac2454b, 0xc54727eb)}(quote
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[31]" = (+)((/)(0.034482758620689655, (+)(1, t)), (ge
tindex)(ˍ₋arg1, 29))
            var"(u(t))[1]" = (+)((/)(-0.034482758620689655, (+)(1, t)), (ge
tindex)(ˍ₋arg1, 1))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
                (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, 
Val{1}(), Val{(29,)}(), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1), 0)
                            (*)((+)((*)(-29.0, var"(u(t))[1]"), (*)(29.0, (
getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1, 1))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1)), (*)(
29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1)), (*)(
29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 2))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2)), (*)(
29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2)), (*)(
29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 3))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3)), (*)(
29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 3))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3)), (*)(
29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 4))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4)), (*)(
29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 4))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4)), (*)(
29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 5))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5)), (*)(
29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5)), (*)(
29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 6))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6)), (*)(
29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 6))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6)), (*)(
29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 7))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7)), (*)(
29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7)), (*)(
29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 8))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8)), (*)(
29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8)), (*)(
29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 9))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9)), (*)(
29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 9))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9)), (*)(
29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 10))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 10)), (*)
(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 10)), (*)
(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 11))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 11)), (*)
(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 11)), (*)
(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 12))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 12)), (*)
(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 12)), (*)
(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 13))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 13)), (*)
(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 13))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 13)), (*)
(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 14))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 14)), (*)
(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 14)), (*)
(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 15))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 15)), (*)
(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 15)), (*)
(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 16))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 16)), (*)
(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 16)), (*)
(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 17))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 17)), (*)
(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 17)), (*)
(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 18))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 18)), (*)
(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 18))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 18)), (*)
(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 19))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 19)), (*)
(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 19)), (*)
(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 20))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 20)), (*)
(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 20))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 20)), (*)
(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 21))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 21)), (*)
(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 21))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 21)), (*)
(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 22))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 22)), (*)
(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 22)), (*)
(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 23))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 23)), (*)
(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 23))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 23)), (*)
(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 24))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 24)), (*)
(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 24)), (*)
(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 25))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 25)), (*)
(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 25)), (*)
(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 26))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 26)), (*)
(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 26))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 26)), (*)
(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 27))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 27)), (*)
(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 27))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 27)), (*)
(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 28))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 28)), (*)
(29.0, (getindex)(ˍ₋arg1, 29))), (getindex)(ˍ₋arg1, 28))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 29), 0)
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 28)), (*)
(29.0, (getindex)(ˍ₋arg1, 29))), (getindex)(ˍ₋arg1, 29))
                        else
                            (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 29)), (*)
(29.0, var"(u(t))[31]")), (getindex)(ˍ₋arg1, 29))
                        end))
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0xb36c9432, 0x6c4d0c52, 0x0a5e9fc8, 0xdced3a2f, 0xaccd7d2b)}(quot
e
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[31]" = (+)((/)(0.034482758620689655, (+)(1, t)), (ge
tindex)(ˍ₋arg1, 29))
            var"(u(t))[1]" = (+)((/)(-0.034482758620689655, (+)(1, t)), (ge
tindex)(ˍ₋arg1, 1))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/Symbolics/FGTCH/src/build_function.jl:519 =#
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds
 begin
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1),
 0)
                                    (*)((+)((*)(-29.0, var"(u(t))[1]"), (*)
(29.0, (getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1, 1))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
)), (*)(29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1))
                                end)
                        ˍ₋out[2] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
)), (*)(29.0, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 2))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
)), (*)(29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2))
                                end)
                        ˍ₋out[3] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
)), (*)(29.0, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 3))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3
)), (*)(29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 3))
                                end)
                        ˍ₋out[4] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 3
)), (*)(29.0, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 4))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4
)), (*)(29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 4))
                                end)
                        ˍ₋out[5] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 4
)), (*)(29.0, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 5))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5
)), (*)(29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5))
                                end)
                        ˍ₋out[6] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 5
)), (*)(29.0, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 6))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6
)), (*)(29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 6))
                                end)
                        ˍ₋out[7] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 6
)), (*)(29.0, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 7))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7
)), (*)(29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7))
                                end)
                        ˍ₋out[8] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 7
)), (*)(29.0, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 8))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8
)), (*)(29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8))
                                end)
                        ˍ₋out[9] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9),
 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 8
)), (*)(29.0, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 9))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9
)), (*)(29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 9))
                                end)
                        ˍ₋out[10] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 9
)), (*)(29.0, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 10))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
0)), (*)(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10))
                                end)
                        ˍ₋out[11] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
0)), (*)(29.0, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 11))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
1)), (*)(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11))
                                end)
                        ˍ₋out[12] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
1)), (*)(29.0, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 12))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
2)), (*)(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12))
                                end)
                        ˍ₋out[13] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
2)), (*)(29.0, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 13))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
3)), (*)(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 13))
                                end)
                        ˍ₋out[14] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
3)), (*)(29.0, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 14))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
4)), (*)(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14))
                                end)
                        ˍ₋out[15] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
4)), (*)(29.0, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 15))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
5)), (*)(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15))
                                end)
                        ˍ₋out[16] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
5)), (*)(29.0, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 16))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
6)), (*)(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16))
                                end)
                        ˍ₋out[17] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
6)), (*)(29.0, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 17))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
7)), (*)(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17))
                                end)
                        ˍ₋out[18] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
7)), (*)(29.0, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 18))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
8)), (*)(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 18))
                                end)
                        ˍ₋out[19] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
8)), (*)(29.0, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 19))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
9)), (*)(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19))
                                end)
                        ˍ₋out[20] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 1
9)), (*)(29.0, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 20))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
0)), (*)(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 20))
                                end)
                        ˍ₋out[21] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
0)), (*)(29.0, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 21))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
1)), (*)(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 21))
                                end)
                        ˍ₋out[22] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
1)), (*)(29.0, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 22))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
2)), (*)(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22))
                                end)
                        ˍ₋out[23] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
2)), (*)(29.0, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 23))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
3)), (*)(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 23))
                                end)
                        ˍ₋out[24] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
3)), (*)(29.0, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 24))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
4)), (*)(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24))
                                end)
                        ˍ₋out[25] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
4)), (*)(29.0, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 25))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
5)), (*)(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25))
                                end)
                        ˍ₋out[26] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
5)), (*)(29.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 26))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
6)), (*)(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 26))
                                end)
                        ˍ₋out[27] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
6)), (*)(29.0, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg1, 27))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
7)), (*)(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 27))
                                end)
                        ˍ₋out[28] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
7)), (*)(29.0, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg1, 28))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
8)), (*)(29.0, (getindex)(ˍ₋arg1, 29))), (getindex)(ˍ₋arg1, 28))
                                end)
                        ˍ₋out[29] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 29
), 0)
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
8)), (*)(29.0, (getindex)(ˍ₋arg1, 29))), (getindex)(ˍ₋arg1, 29))
                                else
                                    (*)((+)((*)(-29.0, (getindex)(ˍ₋arg1, 2
9)), (*)(29.0, var"(u(t))[31]")), (getindex)(ˍ₋arg1, 29))
                                end)
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing,
 nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("ge
tindex(u(t), 2)"), Symbol("getindex(u(t), 3)"), Symbol("getindex(u(t), 4)")
, Symbol("getindex(u(t), 5)"), Symbol("getindex(u(t), 6)"), Symbol("getinde
x(u(t), 7)"), Symbol("getindex(u(t), 8)"), Symbol("getindex(u(t), 9)"), Sym
bol("getindex(u(t), 10)"), Symbol("getindex(u(t), 11)")  …  Symbol("getinde
x(u(t), 21)"), Symbol("getindex(u(t), 22)"), Symbol("getindex(u(t), 23)"), 
Symbol("getindex(u(t), 24)"), Symbol("getindex(u(t), 25)"), Symbol("getinde
x(u(t), 26)"), Symbol("getindex(u(t), 27)"), Symbol("getindex(u(t), 28)"), 
Symbol("getindex(u(t), 29)"), Symbol("getindex(u(t), 30)")], :t, nothing, M
odelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolkit.ODESy
stem, Dict{Any, Any}}(false, Core.Box(Symbolics.Equation[(u(t))[31] ~ 0.034
482758620689655 / (1 + t) + (u(t))[30], (u(t))[1] ~ -0.034482758620689655 /
 (1 + t) + (u(t))[2]]), ModelingToolkit.ODESystem(Symbolics.Equation[Differ
ential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (29.0(u(t))[2] - 29.0(u(t))[1
])*(u(t))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((
u(t))[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3
], (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~
 -ifelse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(
t))[5] - 29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u
(t))[5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29
.0(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0
, (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6]
)*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t
))[7] - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]
), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.
0(u(t))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differen
tial(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])
*(u(t))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u
(t))[10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))
[10], (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))
[11]) ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11
], (29.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))
[21]) ~ -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21
], (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22
]) ~ -ifelse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], 
(29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) 
~ -ifelse((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29
.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -
ifelse((u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(
u(t))[25] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ife
lse((u(t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t
))[26] - 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse
((u(t))[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[
27] - 29.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u
(t))[27] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28]
 - 29.0(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t)
)[28] > 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 
29.0(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[2
9] > 0, (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30] - 29.
0(u(t))[29])*(u(t))[29]), Differential(t)((u(t))[30]) ~ -ifelse((u(t))[30] 
> 0, (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[30], (29.0(u(t))[31] - 29.0(u
(t))[30])*(u(t))[30])], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(
t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (
u(t))[10], (u(t))[11]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (
u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30]], Any
[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[31] ~ 0.03
4482758620689655 / (1 + t) + (u(t))[30], (u(t))[1] ~ -0.034482758620689655 
/ (1 + t) + (u(t))[2]], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[
]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{A
ny}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num
}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}
}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys2, ModelingToolkit.ODESystem[
], Dict{Any, Any}((u(t))[17] => 0.5344827586206896, (u(t))[18] => 0.5689655
172413793, (u(t))[8] => 0.22413793103448276, (u(t))[10] => 0.29310344827586
204, (u(t))[27] => 0.8793103448275862, (u(t))[28] => 0.9137931034482759, (u
(t))[2] => 0.017241379310344827, (u(t))[24] => 0.7758620689655172, (u(t))[3
0] => 0.9827586206896551, (u(t))[21] => 0.6724137931034483…), nothing, noth
ing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.Sy
mbolicContinuousCallback(Symbolics.Equation[], Symbolics.Equation[])], Mode
lingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}
(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}, Metho
dOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.S
calarizedDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{Any}, Me
thodOfLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1, Met
hodOfLines.EdgeAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], Symboli
cUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUti
ls.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Float64}}(x
 => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnT
ype{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDi
ct{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{T
uple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{D
ataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.Im
mutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.I
mmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1],
 (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8
], (u(t))[9], (u(t))[10]  …  (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25]
, (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30], (u(t))[31]]),
 Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRange
Len{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, In
t64}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base
.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{F
loat64}, Base.TwicePrecision{Float64}, Int64}}(x => -0.017241379310344827:0
.034482758620689655:1.0172413793103448), Dict{SymbolicUtils.Sym{Real, Base.
ImmutableDict{DataType, Any}}, Float64}(x => 0.034482758620689655), Dict{Sy
mbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices
{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{Sy
mbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices
{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((31,)))), Method
OfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.Sc
alarizedDiscretization}(Dict{Symbolics.Num, Int64}(x => 29), t, 2, MethodOf
Lines.UpwindScheme(1), MethodOfLines.EdgeAlignedGrid(), true, false, Method
OfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{}, Na
medTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equation[Dif
ferential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Eq
uation[u(0, x) ~ x, Differential(x)(u(t, 0.0)) ~ 1 / (1 + t), Differential(
x)(u(t, 1.0)) ~ 1 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomai
nPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics
.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, A
ny}(), nothing, Any[], :pdesys2, nothing), false, Base.RefValue{Any}(nothin
g)), ModelingToolkit.SystemStructures.TearingState{ModelingToolkit.ODESyste
m}(ModelingToolkit.ODESystem(Symbolics.Equation[Differential(t)((u(t))[2]) 
~ -ifelse((u(t))[2] > 0, (29.0(u(t))[2] - 29.0(u(t))[1])*(u(t))[2], (29.0(u
(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((
u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 2
9.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 
0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4
])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(
t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5
]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[6] - 29
.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), Differe
ntial(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6]
)*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Differential(t)((u
(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8]
, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ 
-ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t
))[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((
u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[11]
 - 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t)
)[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))[12] - 
29.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[21]) ~ -ifelse((u(t)
)[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t))[22] - 
29.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[2
2] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[23] - 29.
0(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] 
> 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24] - 29.0(u
(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0
, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t)
)[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (
29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] - 29.0(u(t))[2
5])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.
0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u(t))[26])
*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u
(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t))[27])*(u
(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t)
)[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t)
)[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[2
9] - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[2
9]), Differential(t)((u(t))[30]) ~ -ifelse((u(t))[30] > 0, (29.0(u(t))[30] 
- 29.0(u(t))[29])*(u(t))[30], (29.0(u(t))[31] - 29.0(u(t))[30])*(u(t))[30])
], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4], (u
(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]
  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26]
, (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30]], Any[], Dict{Any, Any}(:u
 => u(t)), Any[], Symbolics.Equation[(u(t))[31] ~ 0.034482758620689655 / (1
 + t) + (u(t))[30], (u(t))[1] ~ -0.034482758620689655 / (1 + t) + (u(t))[2]
], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any
}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.
Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.N
um}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Nu
m}(undef, 0, 0)), :pdesys2, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(
t))[17] => 0.5344827586206896, (u(t))[18] => 0.5689655172413793, (u(t))[8] 
=> 0.22413793103448276, (u(t))[10] => 0.29310344827586204, (u(t))[27] => 0.
8793103448275862, (u(t))[28] => 0.9137931034482759, (u(t))[2] => 0.01724137
9310344827, (u(t))[24] => 0.7758620689655172, (u(t))[30] => 0.9827586206896
551, (u(t))[21] => 0.6724137931034483…), nothing, nothing, nothing, Modelin
gToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousCallb
ack(Symbolics.Equation[], Symbolics.Equation[])], ModelingToolkit.SymbolicD
iscreteCallback[], MethodOfLines.MOLMetadata{Val{true}(), MethodOfLines.Dis
creteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}, MethodOfLines.MOLFiniteDif
ference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscretizati
on}, ModelingToolkit.PDESystem, Base.RefValue{Any}, MethodOfLines.Scalarize
dDiscretization}(MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAligne
dGrid}(MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base
.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.Imm
utableDict{DataType, Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => 
(0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Not
hing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(
u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}
[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64
}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType,
 Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType
, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3]
, (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[
10]  …  (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[
27], (u(t))[28], (u(t))[29], (u(t))[30], (u(t))[31]]), Dict{SymbolicUtils.S
ym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, Base.Twi
cePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.0344
82758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataTy
pe, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePr
ecision{Float64}, Int64}}(x => -0.017241379310344827:0.034482758620689655:1
.0172413793103448), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataTyp
e, Any}}, Float64}(x => 0.034482758620689655), Dict{SymbolicUtils.Term{Real
, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{
Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{SymbolicUtils.Term{Real
, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{
Int64}}}}(u(t, x) => CartesianIndices((31,)))), MethodOfLines.MOLFiniteDiff
erence{MethodOfLines.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscretizatio
n}(Dict{Symbolics.Num, Int64}(x => 29), t, 2, MethodOfLines.UpwindScheme(1)
, MethodOfLines.EdgeAlignedGrid(), true, false, MethodOfLines.ScalarizedDis
cretization(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}
}()), ModelingToolkit.PDESystem(Symbolics.Equation[Differential(x)(u(t, x))
*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, D
ifferential(x)(u(t, 0.0)) ~ 1 / (1 + t), Differential(x)(u(t, 1.0)) ~ 1 / (
1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0
), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics
.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[]
, :pdesys2, nothing), false, Base.RefValue{Any}(nothing)), nothing, Modelin
gToolkit.Substitutions(Symbolics.Equation[(u(t))[31] ~ 0.034482758620689655
 / (1 + t) + (u(t))[30], (u(t))[1] ~ -0.034482758620689655 / (1 + t) + (u(t
))[2]], [Int64[], Int64[]], Symbolics.Equation[Differential(t)((u(t))[2]) ~
 -ifelse((u(t))[2] > 0, (1.0 / (1 + t))*(u(t))[2], (29.0(u(t))[3] - 29.0(u(
t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (29
.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[3])*(u(
t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u(t))[4]
 - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[4]), Di
fferential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t))[5] - 29.0(u(t
))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5]), Differential(
t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t
))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7
]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7], (29.
0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifels
e((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(t))[9] 
- 29.0(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9]
 > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))[10] - 29.0(u(t
))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (2
9.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[11] - 29.0(u(t))[10]
)*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (29.0(
u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))[12] - 29.0(u(t))[11])*(
u(t))[11])  …  Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (29.0(
u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t))[22] - 29.0(u(t))[21])*(
u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (29.0(u(t
))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t
))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (29.0(u(t))[
23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[
23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (29.0(u(t))[24]
 - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[24]
), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (29.0(u(t))[25] - 
29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[25]), 
Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.0(u(t))[26] - 29.
0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[26]), Dif
ferential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u(t))[27] - 29.0(u
(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[27]), Differ
ential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t))[28] - 29.0(u(t)
)[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[28]), Different
ial(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[29] - 29.0(u(t))[2
8])*(u(t))[29], (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[29]), Differential
(t)((u(t))[30]) ~ -ifelse((u(t))[30] > 0, (29.0(u(t))[30] - 29.0(u(t))[29])
*(u(t))[30], (1.0 / (1 + t))*(u(t))[30])])), Any[(u(t))[2], (u(t))[3], (u(t
))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (
u(t))[11]  …  Differential(t)((u(t))[21]), Differential(t)((u(t))[22]), Dif
ferential(t)((u(t))[23]), Differential(t)((u(t))[24]), Differential(t)((u(t
))[25]), Differential(t)((u(t))[26]), Differential(t)((u(t))[27]), Differen
tial(t)((u(t))[28]), Differential(t)((u(t))[29]), Differential(t)((u(t))[30
])], ModelingToolkit.SystemStructures.SystemStructure(ModelingToolkit.Syste
mStructures.DiffGraph(Union{Nothing, Int64}[30, 31, 32, 33, 34, 35, 36, 37,
 38, 39  …  nothing, nothing, nothing, nothing, nothing, nothing, nothing, 
nothing, nothing, nothing], Union{Nothing, Int64}[nothing, nothing, nothing
, nothing, nothing, nothing, nothing, nothing, nothing, nothing  …  20, 21,
 22, 23, 24, 25, 26, 27, 28, 29]), ModelingToolkit.SystemStructures.DiffGra
ph(Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, nothi
ng, nothing, nothing, nothing, nothing  …  nothing, nothing, nothing, nothi
ng, nothing, nothing, nothing, nothing, nothing, nothing], Union{Nothing, I
nt64}[nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothin
g, nothing, nothing  …  nothing, nothing, nothing, nothing, nothing, nothin
g, nothing, nothing, nothing, nothing]), BipartiteGraph with (29, 58) (𝑠,𝑑)
-vertices
   #  src      dst
  1   [1, 30]  [1]
  2   [2, 31]  [2]
  3   [3, 32]  [3]
  4   [4, 33]  [4]
  5   [5, 34]  [5]
  6   [6, 35]  [6]
  7   [7, 36]  [7]
  8   [8, 37]  [8]
  9   [9, 38]  [9]
  ⋮            
 50   ⋅        [21]
 51   ⋅        [22]
 52   ⋅        [23]
 53   ⋅        [24]
 54   ⋅        [25]
 55   ⋅        [26]
 56   ⋅        [27]
 57   ⋅        [28]
 58   ⋅        [29], BipartiteGraph with (31, 60) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    ∅
 55   ⋅    ∅
 56   ⋅    ∅
 57   ⋅    ∅
 58   ⋅    [31]
 59   ⋅    [30]
 60   ⋅    [31]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[31] ~ 0.034482758620689655 / (1 + t) + (u(t))[30], (u(t))[1] ~ -0.03
4482758620689655 / (1 + t) + (u(t))[2]], [Int64[], Int64[]], Symbolics.Equa
tion[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (1.0 / (1 + t))*(u
(t))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))
[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (2
9.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ife
lse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5
] - 29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[
5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(
t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29
.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(
t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7]
 - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Di
fferential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t
))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(
t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t
))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[
10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10],
 (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11])
 ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (2
9.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[21])
 ~ -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (2
9.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ 
-ifelse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0
(u(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -if
else((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(
t))[24] - 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifels
e((u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))
[25] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((
u(t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26
] - 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t
))[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] -
 29.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[
27] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29
.0(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28]
 > 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(
u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 
0, (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30] - 29.0(u(t
))[29])*(u(t))[29]), Differential(t)((u(t))[30]) ~ -ifelse((u(t))[30] > 0, 
(29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[30], (1.0 / (1 + t))*(u(t))[30])])
), Dict{Any, Any}()), nothing, ModelingToolkit.ODESystem(Symbolics.Equation
[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (29.0(u(t))[2] - 29.0(
u(t))[1])*(u(t))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differenti
al(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(
u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t)
)[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (
29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -if
else((u(t))[5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[
6] - 29.0(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))
[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u
(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (2
9.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u
(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8
] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), D
ifferential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(
t))[8])*(u(t))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Differentia
l(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])
*(u(t))[10], (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differential(t)
((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u
(t))[11], (29.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differential(t)
((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u
(t))[21], (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(t)((u
(t))[22]) ~ -ifelse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t)
)[22], (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)((u(t)
)[23]) ~ -ifelse((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[2
3], (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[2
4]) ~ -ifelse((u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24],
 (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25])
 ~ -ifelse((u(t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (2
9.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ 
-ifelse((u(t))[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0
(u(t))[27] - 29.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -if
else((u(t))[27] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(
t))[28] - 29.0(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifels
e((u(t))[28] > 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))
[29] - 29.0(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((
u(t))[29] > 0, (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30
] - 29.0(u(t))[29])*(u(t))[29]), Differential(t)((u(t))[30]) ~ -ifelse((u(t
))[30] > 0, (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[30], (29.0(u(t))[31] -
 29.0(u(t))[30])*(u(t))[30])], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[
2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t)
)[9], (u(t))[10], (u(t))[11]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))
[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30
]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[31]
 ~ 0.034482758620689655 / (1 + t) + (u(t))[30], (u(t))[1] ~ -0.034482758620
689655 / (1 + t) + (u(t))[2]], Base.RefValue{Vector{Symbolics.Num}}(Symboli
cs.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.Ref
Value{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbol
ics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symboli
cs.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys2, ModelingToolkit.ODE
System[], Dict{Any, Any}((u(t))[17] => 0.5344827586206896, (u(t))[18] => 0.
5689655172413793, (u(t))[8] => 0.22413793103448276, (u(t))[10] => 0.2931034
4827586204, (u(t))[27] => 0.8793103448275862, (u(t))[28] => 0.9137931034482
759, (u(t))[2] => 0.017241379310344827, (u(t))[24] => 0.7758620689655172, (
u(t))[30] => 0.9827586206896551, (u(t))[21] => 0.6724137931034483…), nothin
g, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToo
lkit.SymbolicContinuousCallback(Symbolics.Equation[], Symbolics.Equation[])
], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Va
l{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}
, MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOf
Lines.ScalarizedDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{A
ny}, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1,
 1, MethodOfLines.EdgeAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], 
SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{Symb
olicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Floa
t64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUt
ils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.Immu
tableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.F
nType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.Immutabl
eDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, 
Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real,
 Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(
t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (
u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[22], (u(t))[23], (u(t))[24], (u(
t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30], (u(t))
[31]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, St
epRangeLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float
64}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Rea
l, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrec
ision{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => -0.0172413793103
44827:0.034482758620689655:1.0172413793103448), Dict{SymbolicUtils.Sym{Real
, Base.ImmutableDict{DataType, Any}}, Float64}(x => 0.034482758620689655), 
Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Cartesian
Indices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), 
Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Cartesian
Indices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((31,)))),
 MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfL
ines.ScalarizedDiscretization}(Dict{Symbolics.Num, Int64}(x => 29), t, 2, M
ethodOfLines.UpwindScheme(1), MethodOfLines.EdgeAlignedGrid(), true, false,
 MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tupl
e{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equat
ion[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbo
lics.Equation[u(0, x) ~ x, Differential(x)(u(t, 0.0)) ~ 1 / (1 + t), Differ
ential(x)(u(t, 1.0)) ~ 1 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.V
arDomainPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Sy
mbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict
{Any, Any}(), nothing, Any[], :pdesys2, nothing), false, Base.RefValue{Any}
(nothing)), ModelingToolkit.SystemStructures.TearingState{ModelingToolkit.O
DESystem}(ModelingToolkit.ODESystem(Symbolics.Equation[Differential(t)((u(t
))[2]) ~ -ifelse((u(t))[2] > 0, (29.0(u(t))[2] - 29.0(u(t))[1])*(u(t))[2], 
(29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -i
felse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))
[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t)
)[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(
u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (
29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(
u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[
6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), 
Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u
(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Differentia
l(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u
(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(t)((u(t))
[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (2
9.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -i
felse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(
t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifels
e((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))
[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[21]) ~ -ifels
e((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t))
[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((
u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[23
] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t
))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24] -
 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[
24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 29
.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25]
 > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] - 29.0(
u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 
0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u(t
))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, 
(29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t))[
27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (29
.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[28]
)*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.0(
u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30] - 29.0(u(t))[29])*(
u(t))[29]), Differential(t)((u(t))[30]) ~ -ifelse((u(t))[30] > 0, (29.0(u(t
))[30] - 29.0(u(t))[29])*(u(t))[30], (29.0(u(t))[31] - 29.0(u(t))[30])*(u(t
))[30])], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(t))[3], (u(t))
[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(
t))[11]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(
t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30]], Any[], Dict{Any, 
Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[31] ~ 0.0344827586206896
55 / (1 + t) + (u(t))[30], (u(t))[1] ~ -0.034482758620689655 / (1 + t) + (u
(t))[2]], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefVa
lue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Sym
bolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symb
olics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbo
lics.Num}(undef, 0, 0)), :pdesys2, ModelingToolkit.ODESystem[], Dict{Any, A
ny}((u(t))[17] => 0.5344827586206896, (u(t))[18] => 0.5689655172413793, (u(
t))[8] => 0.22413793103448276, (u(t))[10] => 0.29310344827586204, (u(t))[27
] => 0.8793103448275862, (u(t))[28] => 0.9137931034482759, (u(t))[2] => 0.0
17241379310344827, (u(t))[24] => 0.7758620689655172, (u(t))[30] => 0.982758
6206896551, (u(t))[21] => 0.6724137931034483…), nothing, nothing, nothing, 
ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuo
usCallback(Symbolics.Equation[], Symbolics.Equation[])], ModelingToolkit.Sy
mbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}(), MethodOfLi
nes.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}, MethodOfLines.MOLFi
niteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscr
etization}, ModelingToolkit.PDESystem, Base.RefValue{Any}, MethodOfLines.Sc
alarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.Edg
eAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUtils.Sym{Rea
l, Base.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, B
ase.ImmutableDict{DataType, Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.0)
, t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Rea
l}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, A
ny}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, N
othing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}
, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.ImmutableDict{Da
taType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{D
ataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u
(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], 
(u(t))[10]  …  (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], 
(u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30], (u(t))[31]]), Dict{Symbolic
Utils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, B
ase.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0
:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict
{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, Base.
TwicePrecision{Float64}, Int64}}(x => -0.017241379310344827:0.0344827586206
89655:1.0172413793103448), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{
DataType, Any}}, Float64}(x => 0.034482758620689655), Dict{SymbolicUtils.Te
rm{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base
.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{SymbolicUtils.Te
rm{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base
.OneTo{Int64}}}}(u(t, x) => CartesianIndices((31,)))), MethodOfLines.MOLFin
iteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscre
tization}(Dict{Symbolics.Num, Int64}(x => 29), t, 2, MethodOfLines.UpwindSc
heme(1), MethodOfLines.EdgeAlignedGrid(), true, false, MethodOfLines.Scalar
izedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), T
uple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equation[Differential(x)(u
(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x)
 ~ x, Differential(x)(u(t, 0.0)) ~ 1 / (1 + t), Differential(x)(u(t, 1.0)) 
~ 1 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.
0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Sy
mbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing
, Any[], :pdesys2, nothing), false, Base.RefValue{Any}(nothing)), nothing, 
ModelingToolkit.Substitutions(Symbolics.Equation[(u(t))[31] ~ 0.03448275862
0689655 / (1 + t) + (u(t))[30], (u(t))[1] ~ -0.034482758620689655 / (1 + t)
 + (u(t))[2]], [Int64[], Int64[]], Symbolics.Equation[Differential(t)((u(t)
)[2]) ~ -ifelse((u(t))[2] > 0, (1.0 / (1 + t))*(u(t))[2], (29.0(u(t))[3] - 
29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] >
 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (29.0(u(t))[4] - 29.0(u(t))[
3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (29.0(u
(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[
4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (29.0(u(t))[5] - 2
9.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[5]), Differ
ential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29.0(u(t))[6] - 29.0(u(t))[5
])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[6]), Differential(t)((
u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7] - 29.0(u(t))[6])*(u(t))[7
], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~
 -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[8], (29.0(u(
t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u
(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[9], (29.0(u(t))[10] - 2
9.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] 
> 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10], (29.0(u(t))[11] - 29.0(u(
t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0,
 (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (29.0(u(t))[12] - 29.0(u(t))
[11])*(u(t))[11])  …  Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0,
 (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (29.0(u(t))[22] - 29.0(u(t))
[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (2
9.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0(u(t))[23] - 29.0(u(t))[22
])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (29.0
(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(t))[24] - 29.0(u(t))[23])*
(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (29.0(u(
t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))[25] - 29.0(u(t))[24])*(u(
t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (29.0(u(t))
[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))
[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (29.0(u(t))[26
] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[26
]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (29.0(u(t))[27] -
 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[27]),
 Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (29.0(u(t))[28] - 29
.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[28]), Di
fferential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (29.0(u(t))[29] - 29.0(
u(t))[28])*(u(t))[29], (29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[29]), Diffe
rential(t)((u(t))[30]) ~ -ifelse((u(t))[30] > 0, (29.0(u(t))[30] - 29.0(u(t
))[29])*(u(t))[30], (1.0 / (1 + t))*(u(t))[30])])), Any[(u(t))[2], (u(t))[3
], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))
[10], (u(t))[11]  …  Differential(t)((u(t))[21]), Differential(t)((u(t))[22
]), Differential(t)((u(t))[23]), Differential(t)((u(t))[24]), Differential(
t)((u(t))[25]), Differential(t)((u(t))[26]), Differential(t)((u(t))[27]), D
ifferential(t)((u(t))[28]), Differential(t)((u(t))[29]), Differential(t)((u
(t))[30])], ModelingToolkit.SystemStructures.SystemStructure(ModelingToolki
t.SystemStructures.DiffGraph(Union{Nothing, Int64}[30, 31, 32, 33, 34, 35, 
36, 37, 38, 39  …  nothing, nothing, nothing, nothing, nothing, nothing, no
thing, nothing, nothing, nothing], Union{Nothing, Int64}[nothing, nothing, 
nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing  …  
20, 21, 22, 23, 24, 25, 26, 27, 28, 29]), ModelingToolkit.SystemStructures.
DiffGraph(Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing
, nothing, nothing, nothing, nothing, nothing  …  nothing, nothing, nothing
, nothing, nothing, nothing, nothing, nothing, nothing, nothing], Union{Not
hing, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, nothing,
 nothing, nothing, nothing  …  nothing, nothing, nothing, nothing, nothing,
 nothing, nothing, nothing, nothing, nothing]), BipartiteGraph with (29, 58
) (𝑠,𝑑)-vertices
   #  src      dst
  1   [1, 30]  [1]
  2   [2, 31]  [2]
  3   [3, 32]  [3]
  4   [4, 33]  [4]
  5   [5, 34]  [5]
  6   [6, 35]  [6]
  7   [7, 36]  [7]
  8   [8, 37]  [8]
  9   [9, 38]  [9]
  ⋮            
 50   ⋅        [21]
 51   ⋅        [22]
 52   ⋅        [23]
 53   ⋅        [24]
 54   ⋅        [25]
 55   ⋅        [26]
 56   ⋅        [27]
 57   ⋅        [28]
 58   ⋅        [29], BipartiteGraph with (31, 60) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    ∅
 55   ⋅    ∅
 56   ⋅    ∅
 57   ⋅    ∅
 58   ⋅    [31]
 59   ⋅    [30]
 60   ⋅    [31]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[31] ~ 0.034482758620689655 / (1 + t) + (u(t))[30], (u(t))[1] ~ -0.03
4482758620689655 / (1 + t) + (u(t))[2]], [Int64[], Int64[]], Symbolics.Equa
tion[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (1.0 / (1 + t))*(u
(t))[2], (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[2]), Differential(t)((u(t))
[3]) ~ -ifelse((u(t))[3] > 0, (29.0(u(t))[3] - 29.0(u(t))[2])*(u(t))[3], (2
9.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ife
lse((u(t))[4] > 0, (29.0(u(t))[4] - 29.0(u(t))[3])*(u(t))[4], (29.0(u(t))[5
] - 29.0(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[
5] > 0, (29.0(u(t))[5] - 29.0(u(t))[4])*(u(t))[5], (29.0(u(t))[6] - 29.0(u(
t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (29
.0(u(t))[6] - 29.0(u(t))[5])*(u(t))[6], (29.0(u(t))[7] - 29.0(u(t))[6])*(u(
t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (29.0(u(t))[7]
 - 29.0(u(t))[6])*(u(t))[7], (29.0(u(t))[8] - 29.0(u(t))[7])*(u(t))[7]), Di
fferential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (29.0(u(t))[8] - 29.0(u(t
))[7])*(u(t))[8], (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t))[8]), Differential(
t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (29.0(u(t))[9] - 29.0(u(t))[8])*(u(t
))[9], (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[
10]) ~ -ifelse((u(t))[10] > 0, (29.0(u(t))[10] - 29.0(u(t))[9])*(u(t))[10],
 (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11])
 ~ -ifelse((u(t))[11] > 0, (29.0(u(t))[11] - 29.0(u(t))[10])*(u(t))[11], (2
9.0(u(t))[12] - 29.0(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[21])
 ~ -ifelse((u(t))[21] > 0, (29.0(u(t))[21] - 29.0(u(t))[20])*(u(t))[21], (2
9.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ 
-ifelse((u(t))[22] > 0, (29.0(u(t))[22] - 29.0(u(t))[21])*(u(t))[22], (29.0
(u(t))[23] - 29.0(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -if
else((u(t))[23] > 0, (29.0(u(t))[23] - 29.0(u(t))[22])*(u(t))[23], (29.0(u(
t))[24] - 29.0(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifels
e((u(t))[24] > 0, (29.0(u(t))[24] - 29.0(u(t))[23])*(u(t))[24], (29.0(u(t))
[25] - 29.0(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((
u(t))[25] > 0, (29.0(u(t))[25] - 29.0(u(t))[24])*(u(t))[25], (29.0(u(t))[26
] - 29.0(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t
))[26] > 0, (29.0(u(t))[26] - 29.0(u(t))[25])*(u(t))[26], (29.0(u(t))[27] -
 29.0(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[
27] > 0, (29.0(u(t))[27] - 29.0(u(t))[26])*(u(t))[27], (29.0(u(t))[28] - 29
.0(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28]
 > 0, (29.0(u(t))[28] - 29.0(u(t))[27])*(u(t))[28], (29.0(u(t))[29] - 29.0(
u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 
0, (29.0(u(t))[29] - 29.0(u(t))[28])*(u(t))[29], (29.0(u(t))[30] - 29.0(u(t
))[29])*(u(t))[29]), Differential(t)((u(t))[30]) ~ -ifelse((u(t))[30] > 0, 
(29.0(u(t))[30] - 29.0(u(t))[29])*(u(t))[30], (1.0 / (1 + t))*(u(t))[30])])
)), [0.017241379310344827, 0.05172413793103448, 0.08620689655172414, 0.1206
896551724138, 0.15517241379310345, 0.1896551724137931, 0.22413793103448276,
 0.25862068965517243, 0.29310344827586204, 0.3275862068965517  …  0.6724137
931034483, 0.7068965517241379, 0.7413793103448276, 0.7758620689655172, 0.81
03448275862069, 0.8448275862068966, 0.8793103448275862, 0.9137931034482759,
 0.9482758620689655, 0.9827586206896551], (0.0, 20.0), SciMLBase.NullParame
ters(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), Sc
iMLBase.StandardODEProblem())
 SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, SciML
Base.NullParameters, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, 
ModelingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0x1a3e3835, 0x5cc1a05b, 0x793ab223, 0x39ae733d, 0x7
f6bed51)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋a
rg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x7916f500, 0xdd9487dc, 0x800e53c4, 0x43312e49, 0x33aaa967)}
}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbo
l, Nothing, ModelingToolkit.var"#472#generated_observed#471"{Bool, Modeling
Toolkit.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}, Ba
se.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.Stan
dardODEProblem}(SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, Model
ingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x1a3e3835, 0x5cc1a05b, 0x793ab223, 0x39ae733d, 0x7f6bed
51)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x7916f500, 0xdd9487dc, 0x800e53c4, 0x43312e49, 0x33aaa967)}}, Li
nearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, No
thing, ModelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolk
it.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}(Modeling
Toolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x1a3e3835, 0x5cc1a05b, 0x793ab223, 0x39ae733d, 0x7f6bed51)
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋
arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0x7916f500, 0xdd9487dc, 0x800e53c4, 0x43312e49, 0x33aaa967)}}(Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x1a3e3835
, 0x5cc1a05b, 0x793ab223, 0x39ae733d, 0x7f6bed51)}(quote
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (+)((+)((/)(0.001505798625700349, (+)(1, t)),
 (*)(-0.701406034890512, (getindex)(ˍ₋arg1, 27))), (*)(1.7014060348905122, 
(getindex)(ˍ₋arg1, 28)))
            var"(u(t))[1]" = (+)((+)((/)(-0.0015057986257003572, (+)(1, t))
, (*)(-0.7014060348904776, (getindex)(ˍ₋arg1, 2))), (*)(1.7014060348904776,
 (getindex)(ˍ₋arg1, 1)))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
                (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, 
Val{1}(), Val{(28,)}(), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1), 0)
                            (*)((+)((*)(-725.4739742821658, var"(u(t))[1]")
, (*)(725.4739742821658, (getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1, 1))
                        else
                            (*)((+)((*)(-725.4739742821658, (getindex)(ˍ₋ar
g1, 1)), (*)(725.4739742821658, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1,
 1))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2), 0)
                            (*)((+)((*)(-466.80720968681806, (getindex)(ˍ₋a
rg1, 1)), (*)(466.80720968681806, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg
1, 2))
                        else
                            (*)((+)((*)(-466.80720968681806, (getindex)(ˍ₋a
rg1, 2)), (*)(466.80720968681806, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg
1, 2))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3), 0)
                            (*)((+)((*)(-300.9587037173515, (getindex)(ˍ₋ar
g1, 2)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1,
 3))
                        else
                            (*)((+)((*)(-300.9587037173515, (getindex)(ˍ₋ar
g1, 3)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1,
 3))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4), 0)
                            (*)((+)((*)(-194.6254318817387, (getindex)(ˍ₋ar
g1, 3)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1,
 4))
                        else
                            (*)((+)((*)(-194.6254318817387, (getindex)(ˍ₋ar
g1, 4)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1,
 4))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5), 0)
                            (*)((+)((*)(-126.45525998037883, (getindex)(ˍ₋a
rg1, 4)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg
1, 5))
                        else
                            (*)((+)((*)(-126.45525998037883, (getindex)(ˍ₋a
rg1, 5)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg
1, 5))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6), 0)
                            (*)((+)((*)(-82.75935258368779, (getindex)(ˍ₋ar
g1, 5)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1,
 6))
                        else
                            (*)((+)((*)(-82.75935258368779, (getindex)(ˍ₋ar
g1, 6)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1,
 6))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7), 0)
                            (*)((+)((*)(-54.76340168250905, (getindex)(ˍ₋ar
g1, 6)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1,
 7))
                        else
                            (*)((+)((*)(-54.76340168250905, (getindex)(ˍ₋ar
g1, 7)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1,
 7))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8), 0)
                            (*)((+)((*)(-36.84571154259183, (getindex)(ˍ₋ar
g1, 7)), (*)(36.84571154259183, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1,
 8))
                        else
                            (*)((+)((*)(-36.84571154259183, (getindex)(ˍ₋ar
g1, 8)), (*)(36.84571154259183, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1,
 8))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9), 0)
                            (*)((+)((*)(-25.40834035503878, (getindex)(ˍ₋ar
g1, 8)), (*)(25.40834035503878, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1,
 9))
                        else
                            (*)((+)((*)(-25.40834035503878, (getindex)(ˍ₋ar
g1, 9)), (*)(25.40834035503878, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1
, 9))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10), 0)
                            (*)((+)((*)(-18.15461953934479, (getindex)(ˍ₋ar
g1, 9)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1
, 10))
                        else
                            (*)((+)((*)(-18.15461953934479, (getindex)(ˍ₋ar
g1, 10)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg
1, 10))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11), 0)
                            (*)((+)((*)(-13.627973767492774, (getindex)(ˍ₋a
rg1, 10)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋a
rg1, 11))
                        else
                            (*)((+)((*)(-13.627973767492774, (getindex)(ˍ₋a
rg1, 11)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋a
rg1, 11))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12), 0)
                            (*)((+)((*)(-10.9194349777832, (getindex)(ˍ₋arg
1, 11)), (*)(10.9194349777832, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1,
 12))
                        else
                            (*)((+)((*)(-10.9194349777832, (getindex)(ˍ₋arg
1, 12)), (*)(10.9194349777832, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1,
 12))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13), 0)
                            (*)((+)((*)(-9.485118055761118, (getindex)(ˍ₋ar
g1, 12)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg
1, 13))
                        else
                            (*)((+)((*)(-9.485118055761118, (getindex)(ˍ₋ar
g1, 13)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg
1, 13))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14), 0)
                            (*)((+)((*)(-9.037006589676247, (getindex)(ˍ₋ar
g1, 13)), (*)(9.037006589676247, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg
1, 14))
                        else
                            (*)((+)((*)(-9.037006589676247, (getindex)(ˍ₋ar
g1, 14)), (*)(9.037006589676247, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg
1, 14))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15), 0)
                            (*)((+)((*)(-9.485118055761118, (getindex)(ˍ₋ar
g1, 14)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg
1, 15))
                        else
                            (*)((+)((*)(-9.485118055761118, (getindex)(ˍ₋ar
g1, 15)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg
1, 15))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16), 0)
                            (*)((+)((*)(-10.919434977783192, (getindex)(ˍ₋a
rg1, 15)), (*)(10.919434977783192, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋a
rg1, 16))
                        else
                            (*)((+)((*)(-10.919434977783192, (getindex)(ˍ₋a
rg1, 16)), (*)(10.919434977783192, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋a
rg1, 16))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17), 0)
                            (*)((+)((*)(-13.627973767492774, (getindex)(ˍ₋a
rg1, 16)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋a
rg1, 17))
                        else
                            (*)((+)((*)(-13.627973767492774, (getindex)(ˍ₋a
rg1, 17)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋a
rg1, 17))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18), 0)
                            (*)((+)((*)(-18.15461953934479, (getindex)(ˍ₋ar
g1, 17)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg
1, 18))
                        else
                            (*)((+)((*)(-18.15461953934479, (getindex)(ˍ₋ar
g1, 18)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg
1, 18))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19), 0)
                            (*)((+)((*)(-25.408340355038746, (getindex)(ˍ₋a
rg1, 18)), (*)(25.408340355038746, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋a
rg1, 19))
                        else
                            (*)((+)((*)(-25.408340355038746, (getindex)(ˍ₋a
rg1, 19)), (*)(25.408340355038746, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋a
rg1, 19))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20), 0)
                            (*)((+)((*)(-36.84571154259191, (getindex)(ˍ₋ar
g1, 19)), (*)(36.84571154259191, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg
1, 20))
                        else
                            (*)((+)((*)(-36.84571154259191, (getindex)(ˍ₋ar
g1, 20)), (*)(36.84571154259191, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg
1, 20))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21), 0)
                            (*)((+)((*)(-54.76340168250905, (getindex)(ˍ₋ar
g1, 20)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg
1, 21))
                        else
                            (*)((+)((*)(-54.76340168250905, (getindex)(ˍ₋ar
g1, 21)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg
1, 21))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22), 0)
                            (*)((+)((*)(-82.75935258368779, (getindex)(ˍ₋ar
g1, 21)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg
1, 22))
                        else
                            (*)((+)((*)(-82.75935258368779, (getindex)(ˍ₋ar
g1, 22)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg
1, 22))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23), 0)
                            (*)((+)((*)(-126.45525998037883, (getindex)(ˍ₋a
rg1, 22)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋a
rg1, 23))
                        else
                            (*)((+)((*)(-126.45525998037883, (getindex)(ˍ₋a
rg1, 23)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋a
rg1, 23))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24), 0)
                            (*)((+)((*)(-194.6254318817387, (getindex)(ˍ₋ar
g1, 23)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg
1, 24))
                        else
                            (*)((+)((*)(-194.6254318817387, (getindex)(ˍ₋ar
g1, 24)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg
1, 24))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25), 0)
                            (*)((+)((*)(-300.9587037173515, (getindex)(ˍ₋ar
g1, 24)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg
1, 25))
                        else
                            (*)((+)((*)(-300.9587037173515, (getindex)(ˍ₋ar
g1, 25)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg
1, 25))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26), 0)
                            (*)((+)((*)(-466.80720968680595, (getindex)(ˍ₋a
rg1, 25)), (*)(466.80720968680595, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋a
rg1, 26))
                        else
                            (*)((+)((*)(-466.80720968680595, (getindex)(ˍ₋a
rg1, 26)), (*)(466.80720968680595, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋a
rg1, 26))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27), 0)
                            (*)((+)((*)(-725.4739742821951, (getindex)(ˍ₋ar
g1, 26)), (*)(725.4739742821951, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg
1, 27))
                        else
                            (*)((+)((*)(-725.4739742821951, (getindex)(ˍ₋ar
g1, 27)), (*)(725.4739742821951, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg
1, 27))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28), 0)
                            (*)((+)((*)(-404.4287934927362, (getindex)(ˍ₋ar
g1, 27)), (*)(404.4287934927362, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg
1, 28))
                        else
                            (*)((+)((*)(-404.4287934927362, (getindex)(ˍ₋ar
g1, 28)), (*)(404.4287934927362, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 28))
                        end))
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x7916f500, 0xdd9487dc, 0x800e53c4, 0x43312e49, 0x33aaa967)}(quot
e
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (+)((+)((/)(0.001505798625700349, (+)(1, t)),
 (*)(-0.701406034890512, (getindex)(ˍ₋arg1, 27))), (*)(1.7014060348905122, 
(getindex)(ˍ₋arg1, 28)))
            var"(u(t))[1]" = (+)((+)((/)(-0.0015057986257003572, (+)(1, t))
, (*)(-0.7014060348904776, (getindex)(ˍ₋arg1, 2))), (*)(1.7014060348904776,
 (getindex)(ˍ₋arg1, 1)))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/Symbolics/FGTCH/src/build_function.jl:519 =#
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds
 begin
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1),
 0)
                                    (*)((+)((*)(-725.4739742821658, var"(u(
t))[1]"), (*)(725.4739742821658, (getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1
, 1))
                                else
                                    (*)((+)((*)(-725.4739742821658, (getind
ex)(ˍ₋arg1, 1)), (*)(725.4739742821658, (getindex)(ˍ₋arg1, 2))), (getindex)
(ˍ₋arg1, 1))
                                end)
                        ˍ₋out[2] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2),
 0)
                                    (*)((+)((*)(-466.80720968681806, (getin
dex)(ˍ₋arg1, 1)), (*)(466.80720968681806, (getindex)(ˍ₋arg1, 2))), (getinde
x)(ˍ₋arg1, 2))
                                else
                                    (*)((+)((*)(-466.80720968681806, (getin
dex)(ˍ₋arg1, 2)), (*)(466.80720968681806, (getindex)(ˍ₋arg1, 3))), (getinde
x)(ˍ₋arg1, 2))
                                end)
                        ˍ₋out[3] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3),
 0)
                                    (*)((+)((*)(-300.9587037173515, (getind
ex)(ˍ₋arg1, 2)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 3))), (getindex)
(ˍ₋arg1, 3))
                                else
                                    (*)((+)((*)(-300.9587037173515, (getind
ex)(ˍ₋arg1, 3)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 4))), (getindex)
(ˍ₋arg1, 3))
                                end)
                        ˍ₋out[4] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4),
 0)
                                    (*)((+)((*)(-194.6254318817387, (getind
ex)(ˍ₋arg1, 3)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 4))), (getindex)
(ˍ₋arg1, 4))
                                else
                                    (*)((+)((*)(-194.6254318817387, (getind
ex)(ˍ₋arg1, 4)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 5))), (getindex)
(ˍ₋arg1, 4))
                                end)
                        ˍ₋out[5] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5),
 0)
                                    (*)((+)((*)(-126.45525998037883, (getin
dex)(ˍ₋arg1, 4)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 5))), (getinde
x)(ˍ₋arg1, 5))
                                else
                                    (*)((+)((*)(-126.45525998037883, (getin
dex)(ˍ₋arg1, 5)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 6))), (getinde
x)(ˍ₋arg1, 5))
                                end)
                        ˍ₋out[6] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6),
 0)
                                    (*)((+)((*)(-82.75935258368779, (getind
ex)(ˍ₋arg1, 5)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 6))), (getindex)
(ˍ₋arg1, 6))
                                else
                                    (*)((+)((*)(-82.75935258368779, (getind
ex)(ˍ₋arg1, 6)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 7))), (getindex)
(ˍ₋arg1, 6))
                                end)
                        ˍ₋out[7] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7),
 0)
                                    (*)((+)((*)(-54.76340168250905, (getind
ex)(ˍ₋arg1, 6)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 7))), (getindex)
(ˍ₋arg1, 7))
                                else
                                    (*)((+)((*)(-54.76340168250905, (getind
ex)(ˍ₋arg1, 7)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 8))), (getindex)
(ˍ₋arg1, 7))
                                end)
                        ˍ₋out[8] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8),
 0)
                                    (*)((+)((*)(-36.84571154259183, (getind
ex)(ˍ₋arg1, 7)), (*)(36.84571154259183, (getindex)(ˍ₋arg1, 8))), (getindex)
(ˍ₋arg1, 8))
                                else
                                    (*)((+)((*)(-36.84571154259183, (getind
ex)(ˍ₋arg1, 8)), (*)(36.84571154259183, (getindex)(ˍ₋arg1, 9))), (getindex)
(ˍ₋arg1, 8))
                                end)
                        ˍ₋out[9] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9),
 0)
                                    (*)((+)((*)(-25.40834035503878, (getind
ex)(ˍ₋arg1, 8)), (*)(25.40834035503878, (getindex)(ˍ₋arg1, 9))), (getindex)
(ˍ₋arg1, 9))
                                else
                                    (*)((+)((*)(-25.40834035503878, (getind
ex)(ˍ₋arg1, 9)), (*)(25.40834035503878, (getindex)(ˍ₋arg1, 10))), (getindex
)(ˍ₋arg1, 9))
                                end)
                        ˍ₋out[10] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10
), 0)
                                    (*)((+)((*)(-18.15461953934479, (getind
ex)(ˍ₋arg1, 9)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 10))), (getindex
)(ˍ₋arg1, 10))
                                else
                                    (*)((+)((*)(-18.15461953934479, (getind
ex)(ˍ₋arg1, 10)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 11))), (getinde
x)(ˍ₋arg1, 10))
                                end)
                        ˍ₋out[11] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11
), 0)
                                    (*)((+)((*)(-13.627973767492774, (getin
dex)(ˍ₋arg1, 10)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 11))), (getin
dex)(ˍ₋arg1, 11))
                                else
                                    (*)((+)((*)(-13.627973767492774, (getin
dex)(ˍ₋arg1, 11)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 12))), (getin
dex)(ˍ₋arg1, 11))
                                end)
                        ˍ₋out[12] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12
), 0)
                                    (*)((+)((*)(-10.9194349777832, (getinde
x)(ˍ₋arg1, 11)), (*)(10.9194349777832, (getindex)(ˍ₋arg1, 12))), (getindex)
(ˍ₋arg1, 12))
                                else
                                    (*)((+)((*)(-10.9194349777832, (getinde
x)(ˍ₋arg1, 12)), (*)(10.9194349777832, (getindex)(ˍ₋arg1, 13))), (getindex)
(ˍ₋arg1, 12))
                                end)
                        ˍ₋out[13] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13
), 0)
                                    (*)((+)((*)(-9.485118055761118, (getind
ex)(ˍ₋arg1, 12)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 13))), (getinde
x)(ˍ₋arg1, 13))
                                else
                                    (*)((+)((*)(-9.485118055761118, (getind
ex)(ˍ₋arg1, 13)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 14))), (getinde
x)(ˍ₋arg1, 13))
                                end)
                        ˍ₋out[14] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14
), 0)
                                    (*)((+)((*)(-9.037006589676247, (getind
ex)(ˍ₋arg1, 13)), (*)(9.037006589676247, (getindex)(ˍ₋arg1, 14))), (getinde
x)(ˍ₋arg1, 14))
                                else
                                    (*)((+)((*)(-9.037006589676247, (getind
ex)(ˍ₋arg1, 14)), (*)(9.037006589676247, (getindex)(ˍ₋arg1, 15))), (getinde
x)(ˍ₋arg1, 14))
                                end)
                        ˍ₋out[15] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15
), 0)
                                    (*)((+)((*)(-9.485118055761118, (getind
ex)(ˍ₋arg1, 14)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 15))), (getinde
x)(ˍ₋arg1, 15))
                                else
                                    (*)((+)((*)(-9.485118055761118, (getind
ex)(ˍ₋arg1, 15)), (*)(9.485118055761118, (getindex)(ˍ₋arg1, 16))), (getinde
x)(ˍ₋arg1, 15))
                                end)
                        ˍ₋out[16] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16
), 0)
                                    (*)((+)((*)(-10.919434977783192, (getin
dex)(ˍ₋arg1, 15)), (*)(10.919434977783192, (getindex)(ˍ₋arg1, 16))), (getin
dex)(ˍ₋arg1, 16))
                                else
                                    (*)((+)((*)(-10.919434977783192, (getin
dex)(ˍ₋arg1, 16)), (*)(10.919434977783192, (getindex)(ˍ₋arg1, 17))), (getin
dex)(ˍ₋arg1, 16))
                                end)
                        ˍ₋out[17] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17
), 0)
                                    (*)((+)((*)(-13.627973767492774, (getin
dex)(ˍ₋arg1, 16)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 17))), (getin
dex)(ˍ₋arg1, 17))
                                else
                                    (*)((+)((*)(-13.627973767492774, (getin
dex)(ˍ₋arg1, 17)), (*)(13.627973767492774, (getindex)(ˍ₋arg1, 18))), (getin
dex)(ˍ₋arg1, 17))
                                end)
                        ˍ₋out[18] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18
), 0)
                                    (*)((+)((*)(-18.15461953934479, (getind
ex)(ˍ₋arg1, 17)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 18))), (getinde
x)(ˍ₋arg1, 18))
                                else
                                    (*)((+)((*)(-18.15461953934479, (getind
ex)(ˍ₋arg1, 18)), (*)(18.15461953934479, (getindex)(ˍ₋arg1, 19))), (getinde
x)(ˍ₋arg1, 18))
                                end)
                        ˍ₋out[19] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19
), 0)
                                    (*)((+)((*)(-25.408340355038746, (getin
dex)(ˍ₋arg1, 18)), (*)(25.408340355038746, (getindex)(ˍ₋arg1, 19))), (getin
dex)(ˍ₋arg1, 19))
                                else
                                    (*)((+)((*)(-25.408340355038746, (getin
dex)(ˍ₋arg1, 19)), (*)(25.408340355038746, (getindex)(ˍ₋arg1, 20))), (getin
dex)(ˍ₋arg1, 19))
                                end)
                        ˍ₋out[20] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20
), 0)
                                    (*)((+)((*)(-36.84571154259191, (getind
ex)(ˍ₋arg1, 19)), (*)(36.84571154259191, (getindex)(ˍ₋arg1, 20))), (getinde
x)(ˍ₋arg1, 20))
                                else
                                    (*)((+)((*)(-36.84571154259191, (getind
ex)(ˍ₋arg1, 20)), (*)(36.84571154259191, (getindex)(ˍ₋arg1, 21))), (getinde
x)(ˍ₋arg1, 20))
                                end)
                        ˍ₋out[21] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21
), 0)
                                    (*)((+)((*)(-54.76340168250905, (getind
ex)(ˍ₋arg1, 20)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 21))), (getinde
x)(ˍ₋arg1, 21))
                                else
                                    (*)((+)((*)(-54.76340168250905, (getind
ex)(ˍ₋arg1, 21)), (*)(54.76340168250905, (getindex)(ˍ₋arg1, 22))), (getinde
x)(ˍ₋arg1, 21))
                                end)
                        ˍ₋out[22] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22
), 0)
                                    (*)((+)((*)(-82.75935258368779, (getind
ex)(ˍ₋arg1, 21)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 22))), (getinde
x)(ˍ₋arg1, 22))
                                else
                                    (*)((+)((*)(-82.75935258368779, (getind
ex)(ˍ₋arg1, 22)), (*)(82.75935258368779, (getindex)(ˍ₋arg1, 23))), (getinde
x)(ˍ₋arg1, 22))
                                end)
                        ˍ₋out[23] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23
), 0)
                                    (*)((+)((*)(-126.45525998037883, (getin
dex)(ˍ₋arg1, 22)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 23))), (getin
dex)(ˍ₋arg1, 23))
                                else
                                    (*)((+)((*)(-126.45525998037883, (getin
dex)(ˍ₋arg1, 23)), (*)(126.45525998037883, (getindex)(ˍ₋arg1, 24))), (getin
dex)(ˍ₋arg1, 23))
                                end)
                        ˍ₋out[24] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24
), 0)
                                    (*)((+)((*)(-194.6254318817387, (getind
ex)(ˍ₋arg1, 23)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 24))), (getinde
x)(ˍ₋arg1, 24))
                                else
                                    (*)((+)((*)(-194.6254318817387, (getind
ex)(ˍ₋arg1, 24)), (*)(194.6254318817387, (getindex)(ˍ₋arg1, 25))), (getinde
x)(ˍ₋arg1, 24))
                                end)
                        ˍ₋out[25] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25
), 0)
                                    (*)((+)((*)(-300.9587037173515, (getind
ex)(ˍ₋arg1, 24)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 25))), (getinde
x)(ˍ₋arg1, 25))
                                else
                                    (*)((+)((*)(-300.9587037173515, (getind
ex)(ˍ₋arg1, 25)), (*)(300.9587037173515, (getindex)(ˍ₋arg1, 26))), (getinde
x)(ˍ₋arg1, 25))
                                end)
                        ˍ₋out[26] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26
), 0)
                                    (*)((+)((*)(-466.80720968680595, (getin
dex)(ˍ₋arg1, 25)), (*)(466.80720968680595, (getindex)(ˍ₋arg1, 26))), (getin
dex)(ˍ₋arg1, 26))
                                else
                                    (*)((+)((*)(-466.80720968680595, (getin
dex)(ˍ₋arg1, 26)), (*)(466.80720968680595, (getindex)(ˍ₋arg1, 27))), (getin
dex)(ˍ₋arg1, 26))
                                end)
                        ˍ₋out[27] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27
), 0)
                                    (*)((+)((*)(-725.4739742821951, (getind
ex)(ˍ₋arg1, 26)), (*)(725.4739742821951, (getindex)(ˍ₋arg1, 27))), (getinde
x)(ˍ₋arg1, 27))
                                else
                                    (*)((+)((*)(-725.4739742821951, (getind
ex)(ˍ₋arg1, 27)), (*)(725.4739742821951, (getindex)(ˍ₋arg1, 28))), (getinde
x)(ˍ₋arg1, 27))
                                end)
                        ˍ₋out[28] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28
), 0)
                                    (*)((+)((*)(-404.4287934927362, (getind
ex)(ˍ₋arg1, 27)), (*)(404.4287934927362, (getindex)(ˍ₋arg1, 28))), (getinde
x)(ˍ₋arg1, 28))
                                else
                                    (*)((+)((*)(-404.4287934927362, (getind
ex)(ˍ₋arg1, 28)), (*)(404.4287934927362, var"(u(t))[30]")), (getindex)(ˍ₋ar
g1, 28))
                                end)
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing,
 nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("ge
tindex(u(t), 2)"), Symbol("getindex(u(t), 3)"), Symbol("getindex(u(t), 4)")
, Symbol("getindex(u(t), 5)"), Symbol("getindex(u(t), 6)"), Symbol("getinde
x(u(t), 7)"), Symbol("getindex(u(t), 8)"), Symbol("getindex(u(t), 9)"), Sym
bol("getindex(u(t), 10)"), Symbol("getindex(u(t), 11)")  …  Symbol("getinde
x(u(t), 20)"), Symbol("getindex(u(t), 21)"), Symbol("getindex(u(t), 22)"), 
Symbol("getindex(u(t), 23)"), Symbol("getindex(u(t), 24)"), Symbol("getinde
x(u(t), 25)"), Symbol("getindex(u(t), 26)"), Symbol("getindex(u(t), 27)"), 
Symbol("getindex(u(t), 28)"), Symbol("getindex(u(t), 29)")], :t, nothing, M
odelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolkit.ODESy
stem, Dict{Any, Any}}(false, Core.Box(Symbolics.Equation[(u(t))[30] ~ 0.001
505798625700349 / (1 + t) + 1.7014060348905122(u(t))[29] - 0.70140603489051
2(u(t))[28], (u(t))[1] ~ -0.0015057986257003572 / (1 + t) + 1.7014060348904
776(u(t))[2] - 0.7014060348904776(u(t))[3]]), ModelingToolkit.ODESystem(Sym
bolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (725.47
39742821658(u(t))[2] - 725.4739742821658(u(t))[1])*(u(t))[2], (725.47397428
21658(u(t))[3] - 725.4739742821658(u(t))[2])*(u(t))[2]), Differential(t)((u
(t))[3]) ~ -ifelse((u(t))[3] > 0, (466.80720968681806(u(t))[3] - 466.807209
68681806(u(t))[2])*(u(t))[3], (466.80720968681806(u(t))[4] - 466.8072096868
1806(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] >
 0, (300.9587037173515(u(t))[4] - 300.9587037173515(u(t))[3])*(u(t))[4], (3
00.9587037173515(u(t))[5] - 300.9587037173515(u(t))[4])*(u(t))[4]), Differe
ntial(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (194.6254318817387(u(t))[5] - 
194.6254318817387(u(t))[4])*(u(t))[5], (194.6254318817387(u(t))[6] - 194.62
54318817387(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t
))[6] > 0, (126.45525998037883(u(t))[6] - 126.45525998037883(u(t))[5])*(u(t
))[6], (126.45525998037883(u(t))[7] - 126.45525998037883(u(t))[6])*(u(t))[6
]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (82.75935258368779(
u(t))[7] - 82.75935258368779(u(t))[6])*(u(t))[7], (82.75935258368779(u(t))[
8] - 82.75935258368779(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -
ifelse((u(t))[8] > 0, (54.76340168250905(u(t))[8] - 54.76340168250905(u(t))
[7])*(u(t))[8], (54.76340168250905(u(t))[9] - 54.76340168250905(u(t))[8])*(
u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (36.84571154
259183(u(t))[9] - 36.84571154259183(u(t))[8])*(u(t))[9], (36.84571154259183
(u(t))[10] - 36.84571154259183(u(t))[9])*(u(t))[9]), Differential(t)((u(t))
[10]) ~ -ifelse((u(t))[10] > 0, (25.40834035503878(u(t))[10] - 25.408340355
03878(u(t))[9])*(u(t))[10], (25.40834035503878(u(t))[11] - 25.4083403550387
8(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] 
> 0, (18.15461953934479(u(t))[11] - 18.15461953934479(u(t))[10])*(u(t))[11]
, (18.15461953934479(u(t))[12] - 18.15461953934479(u(t))[11])*(u(t))[11])  
…  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.40834035503874
6(u(t))[20] - 25.408340355038746(u(t))[19])*(u(t))[20], (25.408340355038746
(u(t))[21] - 25.408340355038746(u(t))[20])*(u(t))[20]), Differential(t)((u(
t))[21]) ~ -ifelse((u(t))[21] > 0, (36.84571154259191(u(t))[21] - 36.845711
54259191(u(t))[20])*(u(t))[21], (36.84571154259191(u(t))[22] - 36.845711542
59191(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[
22] > 0, (54.76340168250905(u(t))[22] - 54.76340168250905(u(t))[21])*(u(t))
[22], (54.76340168250905(u(t))[23] - 54.76340168250905(u(t))[22])*(u(t))[22
]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (82.7593525836877
9(u(t))[23] - 82.75935258368779(u(t))[22])*(u(t))[23], (82.75935258368779(u
(t))[24] - 82.75935258368779(u(t))[23])*(u(t))[23]), Differential(t)((u(t))
[24]) ~ -ifelse((u(t))[24] > 0, (126.45525998037883(u(t))[24] - 126.4552599
8037883(u(t))[23])*(u(t))[24], (126.45525998037883(u(t))[25] - 126.45525998
037883(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))
[25] > 0, (194.6254318817387(u(t))[25] - 194.6254318817387(u(t))[24])*(u(t)
)[25], (194.6254318817387(u(t))[26] - 194.6254318817387(u(t))[25])*(u(t))[2
5]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (300.95870371735
15(u(t))[26] - 300.9587037173515(u(t))[25])*(u(t))[26], (300.9587037173515(
u(t))[27] - 300.9587037173515(u(t))[26])*(u(t))[26]), Differential(t)((u(t)
)[27]) ~ -ifelse((u(t))[27] > 0, (466.80720968680595(u(t))[27] - 466.807209
68680595(u(t))[26])*(u(t))[27], (466.80720968680595(u(t))[28] - 466.8072096
8680595(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t)
)[28] > 0, (725.4739742821951(u(t))[28] - 725.4739742821951(u(t))[27])*(u(t
))[28], (725.4739742821951(u(t))[29] - 725.4739742821951(u(t))[28])*(u(t))[
28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (404.4287934927
362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(t))[29], (404.4287934927362
(u(t))[30] - 404.4287934927362(u(t))[29])*(u(t))[29])], t, SymbolicUtils.Te
rm{Real, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u
(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[20], (u(t)
)[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[2
7], (u(t))[28], (u(t))[29]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symb
olics.Equation[(u(t))[30] ~ 0.001505798625700349 / (1 + t) + 1.701406034890
5122(u(t))[29] - 0.701406034890512(u(t))[28], (u(t))[1] ~ -0.00150579862570
03572 / (1 + t) + 1.7014060348904776(u(t))[2] - 0.7014060348904776(u(t))[3]
], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any
}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.
Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.N
um}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Nu
m}(undef, 0, 0)), :pdesys2, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(
t))[17] => 0.6607563687658171, (u(t))[18] => 0.7523361988609284, (u(t))[8] 
=> 0.03444519566621118, (u(t))[10] => 0.07984576661461423, (u(t))[27] => 0.
9940067556575177, (u(t))[28] => 0.9961489676440698, (u(t))[2] => 0.00247262
3156634768, (u(t))[24] => 0.9776380308064558, (u(t))[30] => 1.0, (u(t))[21]
 => 0.9201542333853858…), nothing, nothing, nothing, ModelingToolkit.Symbol
icContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Symbolics.E
quation[], Symbolics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback
[], MethodOfLines.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1
, MethodOfLines.CenterAlignedGrid}, MethodOfLines.MOLFiniteDifference{Metho
dOfLines.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretization}, Modeli
ngToolkit.PDESystem, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretiza
tion}(MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}(Me
thodOfLines.VariableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.Immutabl
eDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDic
t{DataType, Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.
0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Ve
ctor{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, 
x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict
{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1)
, Dict{Int64, SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1
 => x)), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, 
Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[
4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (
u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t
))[27], (u(t))[28], (u(t))[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real, 
Base.ImmutableDict{DataType, Any}}, Vector{Float64}}(x => [0.0, 0.002472623
156634768, 0.0038510323559302617, 0.0059932443424822734, 0.0093159593450666
82, 0.014454034006386562, 0.022361969193544162, 0.03444519566621118, 0.0527
0556608289023, 0.07984576661461423  …  0.9201542333853858, 0.94729443391710
98, 0.9655548043337888, 0.9776380308064558, 0.9855459659936134, 0.990684040
6549333, 0.9940067556575177, 0.9961489676440698, 0.9975273768433652, 1.0]),
 Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Vector{Fl
oat64}}(x => [0.0, 0.002472623156634768, 0.0038510323559302617, 0.005993244
3424822734, 0.009315959345066682, 0.014454034006386562, 0.02236196919354416
2, 0.03444519566621118, 0.05270556608289023, 0.07984576661461423  …  0.9201
542333853858, 0.9472944339171098, 0.9655548043337888, 0.9776380308064558, 0
.9855459659936134, 0.9906840406549333, 0.9940067556575177, 0.99614896764406
98, 0.9975273768433652, 1.0]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableD
ict{DataType, Any}}, Vector{Float64}}(x => [0.002472623156634768]), Dict{Sy
mbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices
{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{Sy
mbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices
{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), Method
OfLines.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodOfLines.
ScalarizedDiscretization}(Dict{Symbolics.Num, Vector{Float64}}(x => [0.0, 0
.002472623156634768, 0.0038510323559302617, 0.0059932443424822734, 0.009315
959345066682, 0.014454034006386562, 0.022361969193544162, 0.034445195666211
18, 0.05270556608289023, 0.07984576661461423  …  0.9201542333853858, 0.9472
944339171098, 0.9655548043337888, 0.9776380308064558, 0.9855459659936134, 0
.9906840406549333, 0.9940067556575177, 0.9961489676440698, 0.99752737684336
52, 1.0]), t, 2, MethodOfLines.UpwindScheme(1), MethodOfLines.CenterAligned
Grid(), true, false, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{S
ymbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESy
stem(Symbolics.Equation[Differential(x)(u(t, x))*u(t, x) + Differential(t)(
u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, Differential(x)(u(t, 0.0)) ~
 1 / (1 + t), Differential(x)(u(t, 1.0)) ~ 1 / (1 + t)], Symbolics.VarDomai
nPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolics.VarDomainPairi
ng(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.Nu
llParameters(), Dict{Any, Any}(), nothing, Any[], :pdesys2, nothing), false
, Base.RefValue{Any}(nothing)), ModelingToolkit.SystemStructures.TearingSta
te{ModelingToolkit.ODESystem}(ModelingToolkit.ODESystem(Symbolics.Equation[
Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (725.4739742821658(u(t)
)[2] - 725.4739742821658(u(t))[1])*(u(t))[2], (725.4739742821658(u(t))[3] -
 725.4739742821658(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifel
se((u(t))[3] > 0, (466.80720968681806(u(t))[3] - 466.80720968681806(u(t))[2
])*(u(t))[3], (466.80720968681806(u(t))[4] - 466.80720968681806(u(t))[3])*(
u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (300.9587037
173515(u(t))[4] - 300.9587037173515(u(t))[3])*(u(t))[4], (300.9587037173515
(u(t))[5] - 300.9587037173515(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[
5]) ~ -ifelse((u(t))[5] > 0, (194.6254318817387(u(t))[5] - 194.625431881738
7(u(t))[4])*(u(t))[5], (194.6254318817387(u(t))[6] - 194.6254318817387(u(t)
)[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (126.
45525998037883(u(t))[6] - 126.45525998037883(u(t))[5])*(u(t))[6], (126.4552
5998037883(u(t))[7] - 126.45525998037883(u(t))[6])*(u(t))[6]), Differential
(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (82.75935258368779(u(t))[7] - 82.75
935258368779(u(t))[6])*(u(t))[7], (82.75935258368779(u(t))[8] - 82.75935258
368779(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8]
 > 0, (54.76340168250905(u(t))[8] - 54.76340168250905(u(t))[7])*(u(t))[8], 
(54.76340168250905(u(t))[9] - 54.76340168250905(u(t))[8])*(u(t))[8]), Diffe
rential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (36.84571154259183(u(t))[9] 
- 36.84571154259183(u(t))[8])*(u(t))[9], (36.84571154259183(u(t))[10] - 36.
84571154259183(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse(
(u(t))[10] > 0, (25.40834035503878(u(t))[10] - 25.40834035503878(u(t))[9])*
(u(t))[10], (25.40834035503878(u(t))[11] - 25.40834035503878(u(t))[10])*(u(
t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.1546195
3934479(u(t))[11] - 18.15461953934479(u(t))[10])*(u(t))[11], (18.1546195393
4479(u(t))[12] - 18.15461953934479(u(t))[11])*(u(t))[11])  …  Differential(
t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.408340355038746(u(t))[20] - 25
.408340355038746(u(t))[19])*(u(t))[20], (25.408340355038746(u(t))[21] - 25.
408340355038746(u(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifel
se((u(t))[21] > 0, (36.84571154259191(u(t))[21] - 36.84571154259191(u(t))[2
0])*(u(t))[21], (36.84571154259191(u(t))[22] - 36.84571154259191(u(t))[21])
*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (54.763
40168250905(u(t))[22] - 54.76340168250905(u(t))[21])*(u(t))[22], (54.763401
68250905(u(t))[23] - 54.76340168250905(u(t))[22])*(u(t))[22]), Differential
(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (82.75935258368779(u(t))[23] - 82
.75935258368779(u(t))[22])*(u(t))[23], (82.75935258368779(u(t))[24] - 82.75
935258368779(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse(
(u(t))[24] > 0, (126.45525998037883(u(t))[24] - 126.45525998037883(u(t))[23
])*(u(t))[24], (126.45525998037883(u(t))[25] - 126.45525998037883(u(t))[24]
)*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (194.6
254318817387(u(t))[25] - 194.6254318817387(u(t))[24])*(u(t))[25], (194.6254
318817387(u(t))[26] - 194.6254318817387(u(t))[25])*(u(t))[25]), Differentia
l(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (300.9587037173515(u(t))[26] - 3
00.9587037173515(u(t))[25])*(u(t))[26], (300.9587037173515(u(t))[27] - 300.
9587037173515(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse
((u(t))[27] > 0, (466.80720968680595(u(t))[27] - 466.80720968680595(u(t))[2
6])*(u(t))[27], (466.80720968680595(u(t))[28] - 466.80720968680595(u(t))[27
])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (725.
4739742821951(u(t))[28] - 725.4739742821951(u(t))[27])*(u(t))[28], (725.473
9742821951(u(t))[29] - 725.4739742821951(u(t))[28])*(u(t))[28]), Differenti
al(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (404.4287934927362(u(t))[29] - 
404.4287934927362(u(t))[28])*(u(t))[29], (404.4287934927362(u(t))[30] - 404
.4287934927362(u(t))[29])*(u(t))[29])], t, SymbolicUtils.Term{Real, Nothing
}[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[
8], (u(t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[20], (u(t))[21], (u(t))[22
], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], 
(u(t))[29]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(
u(t))[30] ~ 0.001505798625700349 / (1 + t) + 1.7014060348905122(u(t))[29] -
 0.701406034890512(u(t))[28], (u(t))[1] ~ -0.0015057986257003572 / (1 + t) 
+ 1.7014060348904776(u(t))[2] - 0.7014060348904776(u(t))[3]], Base.RefValue
{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symboli
cs.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0
)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)
), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0))
, :pdesys2, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.660
7563687658171, (u(t))[18] => 0.7523361988609284, (u(t))[8] => 0.03444519566
621118, (u(t))[10] => 0.07984576661461423, (u(t))[27] => 0.9940067556575177
, (u(t))[28] => 0.9961489676440698, (u(t))[2] => 0.002472623156634768, (u(t
))[24] => 0.9776380308064558, (u(t))[30] => 1.0, (u(t))[21] => 0.9201542333
853858…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCall
back[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[], Symbo
lics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLine
s.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.
CenterAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.CenterA
lignedGrid, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDESys
tem, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodOfLi
nes.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}(MethodOfLines.Vari
ableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, 
Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}
}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{Symbol
icUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUti
ls.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUti
ls.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.S
ym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, Sy
mbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{Sy
mbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbolics
.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (
u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t)
)[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[2
8], (u(t))[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDi
ct{DataType, Any}}, Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.003
8510323559302617, 0.0059932443424822734, 0.009315959345066682, 0.0144540340
06386562, 0.022361969193544162, 0.03444519566621118, 0.05270556608289023, 0
.07984576661461423  …  0.9201542333853858, 0.9472944339171098, 0.9655548043
337888, 0.9776380308064558, 0.9855459659936134, 0.9906840406549333, 0.99400
67556575177, 0.9961489676440698, 0.9975273768433652, 1.0]), Dict{SymbolicUt
ils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Vector{Float64}}(x => [0.
0, 0.002472623156634768, 0.0038510323559302617, 0.0059932443424822734, 0.00
9315959345066682, 0.014454034006386562, 0.022361969193544162, 0.03444519566
621118, 0.05270556608289023, 0.07984576661461423  …  0.9201542333853858, 0.
9472944339171098, 0.9655548043337888, 0.9776380308064558, 0.985545965993613
4, 0.9906840406549333, 0.9940067556575177, 0.9961489676440698, 0.9975273768
433652, 1.0]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, An
y}}, Vector{Float64}}(x => [0.002472623156634768]), Dict{SymbolicUtils.Term
{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.O
neTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{SymbolicUtils.Term
{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.O
neTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), MethodOfLines.MOLFinit
eDifference{MethodOfLines.CenterAlignedGrid, MethodOfLines.ScalarizedDiscre
tization}(Dict{Symbolics.Num, Vector{Float64}}(x => [0.0, 0.002472623156634
768, 0.0038510323559302617, 0.0059932443424822734, 0.009315959345066682, 0.
014454034006386562, 0.022361969193544162, 0.03444519566621118, 0.0527055660
8289023, 0.07984576661461423  …  0.9201542333853858, 0.9472944339171098, 0.
9655548043337888, 0.9776380308064558, 0.9855459659936134, 0.990684040654933
3, 0.9940067556575177, 0.9961489676440698, 0.9975273768433652, 1.0]), t, 2,
 MethodOfLines.UpwindScheme(1), MethodOfLines.CenterAlignedGrid(), true, fa
lse, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, 
Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.E
quation[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], S
ymbolics.Equation[u(0, x) ~ x, Differential(x)(u(t, 0.0)) ~ 1 / (1 + t), Di
fferential(x)(u(t, 1.0)) ~ 1 / (1 + t)], Symbolics.VarDomainPairing[Symboli
cs.VarDomainPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)]
, Symbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), 
Dict{Any, Any}(), nothing, Any[], :pdesys2, nothing), false, Base.RefValue{
Any}(nothing)), nothing, ModelingToolkit.Substitutions(Symbolics.Equation[(
u(t))[30] ~ 0.001505798625700349 / (1 + t) + 1.7014060348905122(u(t))[29] -
 0.701406034890512(u(t))[28], (u(t))[1] ~ -0.0015057986257003572 / (1 + t) 
+ 1.7014060348904776(u(t))[2] - 0.7014060348904776(u(t))[3]], [Int64[], Int
64[]], Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 
0, (1.0924177134554616 / (1 + t) + 508.8518237174903(u(t))[3] - 508.8518237
174902(u(t))[2])*(u(t))[2], (725.4739742821658(u(t))[3] - 725.4739742821658
(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, 
(466.80720968681806(u(t))[3] - 466.80720968681806(u(t))[2])*(u(t))[3], (466
.80720968681806(u(t))[4] - 466.80720968681806(u(t))[3])*(u(t))[3]), Differe
ntial(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (300.9587037173515(u(t))[4] - 
300.9587037173515(u(t))[3])*(u(t))[4], (300.9587037173515(u(t))[5] - 300.95
87037173515(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t
))[5] > 0, (194.6254318817387(u(t))[5] - 194.6254318817387(u(t))[4])*(u(t))
[5], (194.6254318817387(u(t))[6] - 194.6254318817387(u(t))[5])*(u(t))[5]), 
Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (126.45525998037883(u(t
))[6] - 126.45525998037883(u(t))[5])*(u(t))[6], (126.45525998037883(u(t))[7
] - 126.45525998037883(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -
ifelse((u(t))[7] > 0, (82.75935258368779(u(t))[7] - 82.75935258368779(u(t))
[6])*(u(t))[7], (82.75935258368779(u(t))[8] - 82.75935258368779(u(t))[7])*(
u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (54.76340168
250905(u(t))[8] - 54.76340168250905(u(t))[7])*(u(t))[8], (54.76340168250905
(u(t))[9] - 54.76340168250905(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[
9]) ~ -ifelse((u(t))[9] > 0, (36.84571154259183(u(t))[9] - 36.8457115425918
3(u(t))[8])*(u(t))[9], (36.84571154259183(u(t))[10] - 36.84571154259183(u(t
))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (2
5.40834035503878(u(t))[10] - 25.40834035503878(u(t))[9])*(u(t))[10], (25.40
834035503878(u(t))[11] - 25.40834035503878(u(t))[10])*(u(t))[10]), Differen
tial(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.15461953934479(u(t))[11] 
- 18.15461953934479(u(t))[10])*(u(t))[11], (18.15461953934479(u(t))[12] - 1
8.15461953934479(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -
ifelse((u(t))[20] > 0, (25.408340355038746(u(t))[20] - 25.408340355038746(u
(t))[19])*(u(t))[20], (25.408340355038746(u(t))[21] - 25.408340355038746(u(
t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0,
 (36.84571154259191(u(t))[21] - 36.84571154259191(u(t))[20])*(u(t))[21], (3
6.84571154259191(u(t))[22] - 36.84571154259191(u(t))[21])*(u(t))[21]), Diff
erential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (54.76340168250905(u(t))[
22] - 54.76340168250905(u(t))[21])*(u(t))[22], (54.76340168250905(u(t))[23]
 - 54.76340168250905(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ 
-ifelse((u(t))[23] > 0, (82.75935258368779(u(t))[23] - 82.75935258368779(u(
t))[22])*(u(t))[23], (82.75935258368779(u(t))[24] - 82.75935258368779(u(t))
[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (1
26.45525998037883(u(t))[24] - 126.45525998037883(u(t))[23])*(u(t))[24], (12
6.45525998037883(u(t))[25] - 126.45525998037883(u(t))[24])*(u(t))[24]), Dif
ferential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (194.6254318817387(u(t))
[25] - 194.6254318817387(u(t))[24])*(u(t))[25], (194.6254318817387(u(t))[26
] - 194.6254318817387(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~
 -ifelse((u(t))[26] > 0, (300.9587037173515(u(t))[26] - 300.9587037173515(u
(t))[25])*(u(t))[26], (300.9587037173515(u(t))[27] - 300.9587037173515(u(t)
)[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (
466.80720968680595(u(t))[27] - 466.80720968680595(u(t))[26])*(u(t))[27], (4
66.80720968680595(u(t))[28] - 466.80720968680595(u(t))[27])*(u(t))[27]), Di
fferential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (725.4739742821951(u(t)
)[28] - 725.4739742821951(u(t))[27])*(u(t))[28], (725.4739742821951(u(t))[2
9] - 725.4739742821951(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) 
~ -ifelse((u(t))[29] > 0, (404.4287934927362(u(t))[29] - 404.4287934927362(
u(t))[28])*(u(t))[29], (0.6089883214350124 / (1 + t) + 283.66879643929394(u
(t))[29] - 283.66879643929377(u(t))[28])*(u(t))[29])])), Any[(u(t))[2], (u(
t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (
u(t))[10], (u(t))[11]  …  Differential(t)((u(t))[20]), Differential(t)((u(t
))[21]), Differential(t)((u(t))[22]), Differential(t)((u(t))[23]), Differen
tial(t)((u(t))[24]), Differential(t)((u(t))[25]), Differential(t)((u(t))[26
]), Differential(t)((u(t))[27]), Differential(t)((u(t))[28]), Differential(
t)((u(t))[29])], ModelingToolkit.SystemStructures.SystemStructure(ModelingT
oolkit.SystemStructures.DiffGraph(Union{Nothing, Int64}[29, 30, 31, 32, 33,
 34, 35, 36, 37, 38  …  nothing, nothing, nothing, nothing, nothing, nothin
g, nothing, nothing, nothing, nothing], Union{Nothing, Int64}[nothing, noth
ing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing
  …  19, 20, 21, 22, 23, 24, 25, 26, 27, 28]), ModelingToolkit.SystemStruct
ures.DiffGraph(Union{Nothing, Int64}[nothing, nothing, nothing, nothing, no
thing, nothing, nothing, nothing, nothing, nothing  …  nothing, nothing, no
thing, nothing, nothing, nothing, nothing, nothing, nothing, nothing], Unio
n{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, not
hing, nothing, nothing, nothing  …  nothing, nothing, nothing, nothing, not
hing, nothing, nothing, nothing, nothing, nothing]), BipartiteGraph with (2
8, 56) (𝑠,𝑑)-vertices
   #  src      dst
  1   [1, 29]  [1]
  2   [2, 30]  [2]
  3   [3, 31]  [3]
  4   [4, 32]  [4]
  5   [5, 33]  [5]
  6   [6, 34]  [6]
  7   [7, 35]  [7]
  8   [8, 36]  [8]
  9   [9, 37]  [9]
  ⋮            
 48   ⋅        [20]
 49   ⋅        [21]
 50   ⋅        [22]
 51   ⋅        [23]
 52   ⋅        [24]
 53   ⋅        [25]
 54   ⋅        [26]
 55   ⋅        [27]
 56   ⋅        [28], BipartiteGraph with (30, 58) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    ∅
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    ∅
 55   ⋅    [30]
 56   ⋅    [30]
 57   ⋅    [29]
 58   ⋅    [30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[30] ~ 0.001505798625700349 / (1 + t) + 1.7014060348905122(u(t))[29] 
- 0.701406034890512(u(t))[28], (u(t))[1] ~ -0.0015057986257003572 / (1 + t)
 + 1.7014060348904776(u(t))[2] - 0.7014060348904776(u(t))[3]], [Int64[], In
t64[]], Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] >
 0, (1.0924177134554616 / (1 + t) + 508.8518237174903(u(t))[3] - 508.851823
7174902(u(t))[2])*(u(t))[2], (725.4739742821658(u(t))[3] - 725.473974282165
8(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0,
 (466.80720968681806(u(t))[3] - 466.80720968681806(u(t))[2])*(u(t))[3], (46
6.80720968681806(u(t))[4] - 466.80720968681806(u(t))[3])*(u(t))[3]), Differ
ential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (300.9587037173515(u(t))[4] -
 300.9587037173515(u(t))[3])*(u(t))[4], (300.9587037173515(u(t))[5] - 300.9
587037173515(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(
t))[5] > 0, (194.6254318817387(u(t))[5] - 194.6254318817387(u(t))[4])*(u(t)
)[5], (194.6254318817387(u(t))[6] - 194.6254318817387(u(t))[5])*(u(t))[5]),
 Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (126.45525998037883(u(
t))[6] - 126.45525998037883(u(t))[5])*(u(t))[6], (126.45525998037883(u(t))[
7] - 126.45525998037883(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ 
-ifelse((u(t))[7] > 0, (82.75935258368779(u(t))[7] - 82.75935258368779(u(t)
)[6])*(u(t))[7], (82.75935258368779(u(t))[8] - 82.75935258368779(u(t))[7])*
(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (54.7634016
8250905(u(t))[8] - 54.76340168250905(u(t))[7])*(u(t))[8], (54.7634016825090
5(u(t))[9] - 54.76340168250905(u(t))[8])*(u(t))[8]), Differential(t)((u(t))
[9]) ~ -ifelse((u(t))[9] > 0, (36.84571154259183(u(t))[9] - 36.845711542591
83(u(t))[8])*(u(t))[9], (36.84571154259183(u(t))[10] - 36.84571154259183(u(
t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (
25.40834035503878(u(t))[10] - 25.40834035503878(u(t))[9])*(u(t))[10], (25.4
0834035503878(u(t))[11] - 25.40834035503878(u(t))[10])*(u(t))[10]), Differe
ntial(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.15461953934479(u(t))[11]
 - 18.15461953934479(u(t))[10])*(u(t))[11], (18.15461953934479(u(t))[12] - 
18.15461953934479(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ 
-ifelse((u(t))[20] > 0, (25.408340355038746(u(t))[20] - 25.408340355038746(
u(t))[19])*(u(t))[20], (25.408340355038746(u(t))[21] - 25.408340355038746(u
(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0
, (36.84571154259191(u(t))[21] - 36.84571154259191(u(t))[20])*(u(t))[21], (
36.84571154259191(u(t))[22] - 36.84571154259191(u(t))[21])*(u(t))[21]), Dif
ferential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (54.76340168250905(u(t))
[22] - 54.76340168250905(u(t))[21])*(u(t))[22], (54.76340168250905(u(t))[23
] - 54.76340168250905(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~
 -ifelse((u(t))[23] > 0, (82.75935258368779(u(t))[23] - 82.75935258368779(u
(t))[22])*(u(t))[23], (82.75935258368779(u(t))[24] - 82.75935258368779(u(t)
)[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (
126.45525998037883(u(t))[24] - 126.45525998037883(u(t))[23])*(u(t))[24], (1
26.45525998037883(u(t))[25] - 126.45525998037883(u(t))[24])*(u(t))[24]), Di
fferential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (194.6254318817387(u(t)
)[25] - 194.6254318817387(u(t))[24])*(u(t))[25], (194.6254318817387(u(t))[2
6] - 194.6254318817387(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) 
~ -ifelse((u(t))[26] > 0, (300.9587037173515(u(t))[26] - 300.9587037173515(
u(t))[25])*(u(t))[26], (300.9587037173515(u(t))[27] - 300.9587037173515(u(t
))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, 
(466.80720968680595(u(t))[27] - 466.80720968680595(u(t))[26])*(u(t))[27], (
466.80720968680595(u(t))[28] - 466.80720968680595(u(t))[27])*(u(t))[27]), D
ifferential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (725.4739742821951(u(t
))[28] - 725.4739742821951(u(t))[27])*(u(t))[28], (725.4739742821951(u(t))[
29] - 725.4739742821951(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29])
 ~ -ifelse((u(t))[29] > 0, (404.4287934927362(u(t))[29] - 404.4287934927362
(u(t))[28])*(u(t))[29], (0.6089883214350124 / (1 + t) + 283.66879643929394(
u(t))[29] - 283.66879643929377(u(t))[28])*(u(t))[29])])), Dict{Any, Any}())
, nothing, ModelingToolkit.ODESystem(Symbolics.Equation[Differential(t)((u(
t))[2]) ~ -ifelse((u(t))[2] > 0, (725.4739742821658(u(t))[2] - 725.47397428
21658(u(t))[1])*(u(t))[2], (725.4739742821658(u(t))[3] - 725.4739742821658(
u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (
466.80720968681806(u(t))[3] - 466.80720968681806(u(t))[2])*(u(t))[3], (466.
80720968681806(u(t))[4] - 466.80720968681806(u(t))[3])*(u(t))[3]), Differen
tial(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (300.9587037173515(u(t))[4] - 3
00.9587037173515(u(t))[3])*(u(t))[4], (300.9587037173515(u(t))[5] - 300.958
7037173515(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t)
)[5] > 0, (194.6254318817387(u(t))[5] - 194.6254318817387(u(t))[4])*(u(t))[
5], (194.6254318817387(u(t))[6] - 194.6254318817387(u(t))[5])*(u(t))[5]), D
ifferential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (126.45525998037883(u(t)
)[6] - 126.45525998037883(u(t))[5])*(u(t))[6], (126.45525998037883(u(t))[7]
 - 126.45525998037883(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -i
felse((u(t))[7] > 0, (82.75935258368779(u(t))[7] - 82.75935258368779(u(t))[
6])*(u(t))[7], (82.75935258368779(u(t))[8] - 82.75935258368779(u(t))[7])*(u
(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (54.763401682
50905(u(t))[8] - 54.76340168250905(u(t))[7])*(u(t))[8], (54.76340168250905(
u(t))[9] - 54.76340168250905(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9
]) ~ -ifelse((u(t))[9] > 0, (36.84571154259183(u(t))[9] - 36.84571154259183
(u(t))[8])*(u(t))[9], (36.84571154259183(u(t))[10] - 36.84571154259183(u(t)
)[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25
.40834035503878(u(t))[10] - 25.40834035503878(u(t))[9])*(u(t))[10], (25.408
34035503878(u(t))[11] - 25.40834035503878(u(t))[10])*(u(t))[10]), Different
ial(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.15461953934479(u(t))[11] -
 18.15461953934479(u(t))[10])*(u(t))[11], (18.15461953934479(u(t))[12] - 18
.15461953934479(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -i
felse((u(t))[20] > 0, (25.408340355038746(u(t))[20] - 25.408340355038746(u(
t))[19])*(u(t))[20], (25.408340355038746(u(t))[21] - 25.408340355038746(u(t
))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, 
(36.84571154259191(u(t))[21] - 36.84571154259191(u(t))[20])*(u(t))[21], (36
.84571154259191(u(t))[22] - 36.84571154259191(u(t))[21])*(u(t))[21]), Diffe
rential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (54.76340168250905(u(t))[2
2] - 54.76340168250905(u(t))[21])*(u(t))[22], (54.76340168250905(u(t))[23] 
- 54.76340168250905(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -
ifelse((u(t))[23] > 0, (82.75935258368779(u(t))[23] - 82.75935258368779(u(t
))[22])*(u(t))[23], (82.75935258368779(u(t))[24] - 82.75935258368779(u(t))[
23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (12
6.45525998037883(u(t))[24] - 126.45525998037883(u(t))[23])*(u(t))[24], (126
.45525998037883(u(t))[25] - 126.45525998037883(u(t))[24])*(u(t))[24]), Diff
erential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (194.6254318817387(u(t))[
25] - 194.6254318817387(u(t))[24])*(u(t))[25], (194.6254318817387(u(t))[26]
 - 194.6254318817387(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ 
-ifelse((u(t))[26] > 0, (300.9587037173515(u(t))[26] - 300.9587037173515(u(
t))[25])*(u(t))[26], (300.9587037173515(u(t))[27] - 300.9587037173515(u(t))
[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (4
66.80720968680595(u(t))[27] - 466.80720968680595(u(t))[26])*(u(t))[27], (46
6.80720968680595(u(t))[28] - 466.80720968680595(u(t))[27])*(u(t))[27]), Dif
ferential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (725.4739742821951(u(t))
[28] - 725.4739742821951(u(t))[27])*(u(t))[28], (725.4739742821951(u(t))[29
] - 725.4739742821951(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~
 -ifelse((u(t))[29] > 0, (404.4287934927362(u(t))[29] - 404.4287934927362(u
(t))[28])*(u(t))[29], (404.4287934927362(u(t))[30] - 404.4287934927362(u(t)
)[29])*(u(t))[29])], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(t))
[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t
))[10], (u(t))[11]  …  (u(t))[20], (u(t))[21], (u(t))[22], (u(t))[23], (u(t
))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29]], Any[],
 Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[30] ~ 0.00150
5798625700349 / (1 + t) + 1.7014060348905122(u(t))[29] - 0.701406034890512(
u(t))[28], (u(t))[1] ~ -0.0015057986257003572 / (1 + t) + 1.701406034890477
6(u(t))[2] - 0.7014060348904776(u(t))[3]], Base.RefValue{Vector{Symbolics.N
um}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0
)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{M
atrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Ma
trix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys2, Modelin
gToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.6607563687658171, (u(t
))[18] => 0.7523361988609284, (u(t))[8] => 0.03444519566621118, (u(t))[10] 
=> 0.07984576661461423, (u(t))[27] => 0.9940067556575177, (u(t))[28] => 0.9
961489676440698, (u(t))[2] => 0.002472623156634768, (u(t))[24] => 0.9776380
308064558, (u(t))[30] => 1.0, (u(t))[21] => 0.9201542333853858…), nothing, 
nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolki
t.SymbolicContinuousCallback(Symbolics.Equation[], Symbolics.Equation[])], 
ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{t
rue}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid},
 MethodOfLines.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodO
fLines.ScalarizedDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{
Any}, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1
, 1, MethodOfLines.CenterAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)
], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{S
ymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, F
loat64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{Symboli
cUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.I
mmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtil
s.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.Immut
ableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Rea
l, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Re
al, Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [
(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7]
, (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23], 
(u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(
t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}},
 Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.0038510323559302617, 0
.0059932443424822734, 0.009315959345066682, 0.014454034006386562, 0.0223619
69193544162, 0.03444519566621118, 0.05270556608289023, 0.07984576661461423 
 …  0.9201542333853858, 0.9472944339171098, 0.9655548043337888, 0.977638030
8064558, 0.9855459659936134, 0.9906840406549333, 0.9940067556575177, 0.9961
489676440698, 0.9975273768433652, 1.0]), Dict{SymbolicUtils.Sym{Real, Base.
ImmutableDict{DataType, Any}}, Vector{Float64}}(x => [0.0, 0.00247262315663
4768, 0.0038510323559302617, 0.0059932443424822734, 0.009315959345066682, 0
.014454034006386562, 0.022361969193544162, 0.03444519566621118, 0.052705566
08289023, 0.07984576661461423  …  0.9201542333853858, 0.9472944339171098, 0
.9655548043337888, 0.9776380308064558, 0.9855459659936134, 0.99068404065493
33, 0.9940067556575177, 0.9961489676440698, 0.9975273768433652, 1.0]), Dict
{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Vector{Float64
}}(x => [0.002472623156634768]), Dict{SymbolicUtils.Term{Real, Base.Immutab
leDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t,
 x) => CartesianIndices((30,))), Dict{SymbolicUtils.Term{Real, Base.Immutab
leDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t,
 x) => CartesianIndices((30,)))), MethodOfLines.MOLFiniteDifference{MethodO
fLines.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretization}(Dict{Symb
olics.Num, Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.003851032355
9302617, 0.0059932443424822734, 0.009315959345066682, 0.014454034006386562,
 0.022361969193544162, 0.03444519566621118, 0.05270556608289023, 0.07984576
661461423  …  0.9201542333853858, 0.9472944339171098, 0.9655548043337888, 0
.9776380308064558, 0.9855459659936134, 0.9906840406549333, 0.99400675565751
77, 0.9961489676440698, 0.9975273768433652, 1.0]), t, 2, MethodOfLines.Upwi
ndScheme(1), MethodOfLines.CenterAlignedGrid(), true, false, MethodOfLines.
ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple
{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equation[Differentia
l(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equation[u
(0, x) ~ x, Differential(x)(u(t, 0.0)) ~ 1 / (1 + t), Differential(x)(u(t, 
1.0)) ~ 1 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing
(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, 
x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), n
othing, Any[], :pdesys2, nothing), false, Base.RefValue{Any}(nothing)), Mod
elingToolkit.SystemStructures.TearingState{ModelingToolkit.ODESystem}(Model
ingToolkit.ODESystem(Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifels
e((u(t))[2] > 0, (725.4739742821658(u(t))[2] - 725.4739742821658(u(t))[1])*
(u(t))[2], (725.4739742821658(u(t))[3] - 725.4739742821658(u(t))[2])*(u(t))
[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (466.807209686818
06(u(t))[3] - 466.80720968681806(u(t))[2])*(u(t))[3], (466.80720968681806(u
(t))[4] - 466.80720968681806(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4
]) ~ -ifelse((u(t))[4] > 0, (300.9587037173515(u(t))[4] - 300.9587037173515
(u(t))[3])*(u(t))[4], (300.9587037173515(u(t))[5] - 300.9587037173515(u(t))
[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (194.6
254318817387(u(t))[5] - 194.6254318817387(u(t))[4])*(u(t))[5], (194.6254318
817387(u(t))[6] - 194.6254318817387(u(t))[5])*(u(t))[5]), Differential(t)((
u(t))[6]) ~ -ifelse((u(t))[6] > 0, (126.45525998037883(u(t))[6] - 126.45525
998037883(u(t))[5])*(u(t))[6], (126.45525998037883(u(t))[7] - 126.455259980
37883(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] 
> 0, (82.75935258368779(u(t))[7] - 82.75935258368779(u(t))[6])*(u(t))[7], (
82.75935258368779(u(t))[8] - 82.75935258368779(u(t))[7])*(u(t))[7]), Differ
ential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (54.76340168250905(u(t))[8] -
 54.76340168250905(u(t))[7])*(u(t))[8], (54.76340168250905(u(t))[9] - 54.76
340168250905(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(
t))[9] > 0, (36.84571154259183(u(t))[9] - 36.84571154259183(u(t))[8])*(u(t)
)[9], (36.84571154259183(u(t))[10] - 36.84571154259183(u(t))[9])*(u(t))[9])
, Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.40834035503878(
u(t))[10] - 25.40834035503878(u(t))[9])*(u(t))[10], (25.40834035503878(u(t)
)[11] - 25.40834035503878(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11
]) ~ -ifelse((u(t))[11] > 0, (18.15461953934479(u(t))[11] - 18.154619539344
79(u(t))[10])*(u(t))[11], (18.15461953934479(u(t))[12] - 18.15461953934479(
u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20]
 > 0, (25.408340355038746(u(t))[20] - 25.408340355038746(u(t))[19])*(u(t))[
20], (25.408340355038746(u(t))[21] - 25.408340355038746(u(t))[20])*(u(t))[2
0]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (36.845711542591
91(u(t))[21] - 36.84571154259191(u(t))[20])*(u(t))[21], (36.84571154259191(
u(t))[22] - 36.84571154259191(u(t))[21])*(u(t))[21]), Differential(t)((u(t)
)[22]) ~ -ifelse((u(t))[22] > 0, (54.76340168250905(u(t))[22] - 54.76340168
250905(u(t))[21])*(u(t))[22], (54.76340168250905(u(t))[23] - 54.76340168250
905(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23
] > 0, (82.75935258368779(u(t))[23] - 82.75935258368779(u(t))[22])*(u(t))[2
3], (82.75935258368779(u(t))[24] - 82.75935258368779(u(t))[23])*(u(t))[23])
, Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (126.45525998037883
(u(t))[24] - 126.45525998037883(u(t))[23])*(u(t))[24], (126.45525998037883(
u(t))[25] - 126.45525998037883(u(t))[24])*(u(t))[24]), Differential(t)((u(t
))[25]) ~ -ifelse((u(t))[25] > 0, (194.6254318817387(u(t))[25] - 194.625431
8817387(u(t))[24])*(u(t))[25], (194.6254318817387(u(t))[26] - 194.625431881
7387(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[2
6] > 0, (300.9587037173515(u(t))[26] - 300.9587037173515(u(t))[25])*(u(t))[
26], (300.9587037173515(u(t))[27] - 300.9587037173515(u(t))[26])*(u(t))[26]
), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (466.8072096868059
5(u(t))[27] - 466.80720968680595(u(t))[26])*(u(t))[27], (466.80720968680595
(u(t))[28] - 466.80720968680595(u(t))[27])*(u(t))[27]), Differential(t)((u(
t))[28]) ~ -ifelse((u(t))[28] > 0, (725.4739742821951(u(t))[28] - 725.47397
42821951(u(t))[27])*(u(t))[28], (725.4739742821951(u(t))[29] - 725.47397428
21951(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[
29] > 0, (404.4287934927362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(t))
[29], (404.4287934927362(u(t))[30] - 404.4287934927362(u(t))[29])*(u(t))[29
])], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4], 
(u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[1
1]  …  (u(t))[20], (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[2
5], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29]], Any[], Dict{Any, Any}(
:u => u(t)), Any[], Symbolics.Equation[(u(t))[30] ~ 0.001505798625700349 / 
(1 + t) + 1.7014060348905122(u(t))[29] - 0.701406034890512(u(t))[28], (u(t)
)[1] ~ -0.0015057986257003572 / (1 + t) + 1.7014060348904776(u(t))[2] - 0.7
014060348904776(u(t))[3]], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.N
um[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValu
e{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.
Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.N
um}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys2, ModelingToolkit.ODESyst
em[], Dict{Any, Any}((u(t))[17] => 0.6607563687658171, (u(t))[18] => 0.7523
361988609284, (u(t))[8] => 0.03444519566621118, (u(t))[10] => 0.07984576661
461423, (u(t))[27] => 0.9940067556575177, (u(t))[28] => 0.9961489676440698,
 (u(t))[2] => 0.002472623156634768, (u(t))[24] => 0.9776380308064558, (u(t)
)[30] => 1.0, (u(t))[21] => 0.9201542333853858…), nothing, nothing, nothing
, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContin
uousCallback(Symbolics.Equation[], Symbolics.Equation[])], ModelingToolkit.
SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}(), MethodOf
Lines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}, MethodOfLines.M
OLFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodOfLines.Scalarize
dDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{Any}, MethodOfLi
nes.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1, MethodOfLin
es.CenterAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUtils
.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sym
{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Float64}}(x => (0
.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{Tu
ple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{Dat
aType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, 
Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataTyp
e, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.Immutabl
eDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.Immutab
leDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t)
)[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(
t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t
))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30]]), Dict{
SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Vector{Float64}
}(x => [0.0, 0.002472623156634768, 0.0038510323559302617, 0.005993244342482
2734, 0.009315959345066682, 0.014454034006386562, 0.022361969193544162, 0.0
3444519566621118, 0.05270556608289023, 0.07984576661461423  …  0.9201542333
853858, 0.9472944339171098, 0.9655548043337888, 0.9776380308064558, 0.98554
59659936134, 0.9906840406549333, 0.9940067556575177, 0.9961489676440698, 0.
9975273768433652, 1.0]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{Da
taType, Any}}, Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.00385103
23559302617, 0.0059932443424822734, 0.009315959345066682, 0.014454034006386
562, 0.022361969193544162, 0.03444519566621118, 0.05270556608289023, 0.0798
4576661461423  …  0.9201542333853858, 0.9472944339171098, 0.965554804333788
8, 0.9776380308064558, 0.9855459659936134, 0.9906840406549333, 0.9940067556
575177, 0.9961489676440698, 0.9975273768433652, 1.0]), Dict{SymbolicUtils.S
ym{Real, Base.ImmutableDict{DataType, Any}}, Vector{Float64}}(x => [0.00247
2623156634768]), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType,
 Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => Cartesian
Indices((30,))), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType,
 Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => Cartesian
Indices((30,)))), MethodOfLines.MOLFiniteDifference{MethodOfLines.CenterAli
gnedGrid, MethodOfLines.ScalarizedDiscretization}(Dict{Symbolics.Num, Vecto
r{Float64}}(x => [0.0, 0.002472623156634768, 0.0038510323559302617, 0.00599
32443424822734, 0.009315959345066682, 0.014454034006386562, 0.0223619691935
44162, 0.03444519566621118, 0.05270556608289023, 0.07984576661461423  …  0.
9201542333853858, 0.9472944339171098, 0.9655548043337888, 0.977638030806455
8, 0.9855459659936134, 0.9906840406549333, 0.9940067556575177, 0.9961489676
440698, 0.9975273768433652, 1.0]), t, 2, MethodOfLines.UpwindScheme(1), Met
hodOfLines.CenterAlignedGrid(), true, false, MethodOfLines.ScalarizedDiscre
tization(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()
), ModelingToolkit.PDESystem(Symbolics.Equation[Differential(x)(u(t, x))*u(
t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, Diff
erential(x)(u(t, 0.0)) ~ 1 / (1 + t), Differential(x)(u(t, 1.0)) ~ 1 / (1 +
 t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), 
Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Nu
m[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[], :
pdesys2, nothing), false, Base.RefValue{Any}(nothing)), nothing, ModelingTo
olkit.Substitutions(Symbolics.Equation[(u(t))[30] ~ 0.001505798625700349 / 
(1 + t) + 1.7014060348905122(u(t))[29] - 0.701406034890512(u(t))[28], (u(t)
)[1] ~ -0.0015057986257003572 / (1 + t) + 1.7014060348904776(u(t))[2] - 0.7
014060348904776(u(t))[3]], [Int64[], Int64[]], Symbolics.Equation[Different
ial(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (1.0924177134554616 / (1 + t) + 
508.8518237174903(u(t))[3] - 508.8518237174902(u(t))[2])*(u(t))[2], (725.47
39742821658(u(t))[3] - 725.4739742821658(u(t))[2])*(u(t))[2]), Differential
(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (466.80720968681806(u(t))[3] - 466.
80720968681806(u(t))[2])*(u(t))[3], (466.80720968681806(u(t))[4] - 466.8072
0968681806(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t)
)[4] > 0, (300.9587037173515(u(t))[4] - 300.9587037173515(u(t))[3])*(u(t))[
4], (300.9587037173515(u(t))[5] - 300.9587037173515(u(t))[4])*(u(t))[4]), D
ifferential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (194.6254318817387(u(t))
[5] - 194.6254318817387(u(t))[4])*(u(t))[5], (194.6254318817387(u(t))[6] - 
194.6254318817387(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifels
e((u(t))[6] > 0, (126.45525998037883(u(t))[6] - 126.45525998037883(u(t))[5]
)*(u(t))[6], (126.45525998037883(u(t))[7] - 126.45525998037883(u(t))[6])*(u
(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (82.759352583
68779(u(t))[7] - 82.75935258368779(u(t))[6])*(u(t))[7], (82.75935258368779(
u(t))[8] - 82.75935258368779(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8
]) ~ -ifelse((u(t))[8] > 0, (54.76340168250905(u(t))[8] - 54.76340168250905
(u(t))[7])*(u(t))[8], (54.76340168250905(u(t))[9] - 54.76340168250905(u(t))
[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (36.84
571154259183(u(t))[9] - 36.84571154259183(u(t))[8])*(u(t))[9], (36.84571154
259183(u(t))[10] - 36.84571154259183(u(t))[9])*(u(t))[9]), Differential(t)(
(u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.40834035503878(u(t))[10] - 25.408
34035503878(u(t))[9])*(u(t))[10], (25.40834035503878(u(t))[11] - 25.4083403
5503878(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t)
)[11] > 0, (18.15461953934479(u(t))[11] - 18.15461953934479(u(t))[10])*(u(t
))[11], (18.15461953934479(u(t))[12] - 18.15461953934479(u(t))[11])*(u(t))[
11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.40834035
5038746(u(t))[20] - 25.408340355038746(u(t))[19])*(u(t))[20], (25.408340355
038746(u(t))[21] - 25.408340355038746(u(t))[20])*(u(t))[20]), Differential(
t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (36.84571154259191(u(t))[21] - 36.
84571154259191(u(t))[20])*(u(t))[21], (36.84571154259191(u(t))[22] - 36.845
71154259191(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((
u(t))[22] > 0, (54.76340168250905(u(t))[22] - 54.76340168250905(u(t))[21])*
(u(t))[22], (54.76340168250905(u(t))[23] - 54.76340168250905(u(t))[22])*(u(
t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (82.7593525
8368779(u(t))[23] - 82.75935258368779(u(t))[22])*(u(t))[23], (82.7593525836
8779(u(t))[24] - 82.75935258368779(u(t))[23])*(u(t))[23]), Differential(t)(
(u(t))[24]) ~ -ifelse((u(t))[24] > 0, (126.45525998037883(u(t))[24] - 126.4
5525998037883(u(t))[23])*(u(t))[24], (126.45525998037883(u(t))[25] - 126.45
525998037883(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse(
(u(t))[25] > 0, (194.6254318817387(u(t))[25] - 194.6254318817387(u(t))[24])
*(u(t))[25], (194.6254318817387(u(t))[26] - 194.6254318817387(u(t))[25])*(u
(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (300.95870
37173515(u(t))[26] - 300.9587037173515(u(t))[25])*(u(t))[26], (300.95870371
73515(u(t))[27] - 300.9587037173515(u(t))[26])*(u(t))[26]), Differential(t)
((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (466.80720968680595(u(t))[27] - 466.
80720968680595(u(t))[26])*(u(t))[27], (466.80720968680595(u(t))[28] - 466.8
0720968680595(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse
((u(t))[28] > 0, (725.4739742821951(u(t))[28] - 725.4739742821951(u(t))[27]
)*(u(t))[28], (725.4739742821951(u(t))[29] - 725.4739742821951(u(t))[28])*(
u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (404.4287
934927362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(t))[29], (0.608988321
4350124 / (1 + t) + 283.66879643929394(u(t))[29] - 283.66879643929377(u(t))
[28])*(u(t))[29])])), Any[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t)
)[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  Different
ial(t)((u(t))[20]), Differential(t)((u(t))[21]), Differential(t)((u(t))[22]
), Differential(t)((u(t))[23]), Differential(t)((u(t))[24]), Differential(t
)((u(t))[25]), Differential(t)((u(t))[26]), Differential(t)((u(t))[27]), Di
fferential(t)((u(t))[28]), Differential(t)((u(t))[29])], ModelingToolkit.Sy
stemStructures.SystemStructure(ModelingToolkit.SystemStructures.DiffGraph(U
nion{Nothing, Int64}[29, 30, 31, 32, 33, 34, 35, 36, 37, 38  …  nothing, no
thing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothi
ng], Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, not
hing, nothing, nothing, nothing, nothing  …  19, 20, 21, 22, 23, 24, 25, 26
, 27, 28]), ModelingToolkit.SystemStructures.DiffGraph(Union{Nothing, Int64
}[nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, n
othing, nothing  …  nothing, nothing, nothing, nothing, nothing, nothing, n
othing, nothing, nothing, nothing], Union{Nothing, Int64}[nothing, nothing,
 nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing  … 
 nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, no
thing, nothing]), BipartiteGraph with (28, 56) (𝑠,𝑑)-vertices
   #  src      dst
  1   [1, 29]  [1]
  2   [2, 30]  [2]
  3   [3, 31]  [3]
  4   [4, 32]  [4]
  5   [5, 33]  [5]
  6   [6, 34]  [6]
  7   [7, 35]  [7]
  8   [8, 36]  [8]
  9   [9, 37]  [9]
  ⋮            
 48   ⋅        [20]
 49   ⋅        [21]
 50   ⋅        [22]
 51   ⋅        [23]
 52   ⋅        [24]
 53   ⋅        [25]
 54   ⋅        [26]
 55   ⋅        [27]
 56   ⋅        [28], BipartiteGraph with (30, 58) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    ∅
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    ∅
 55   ⋅    [30]
 56   ⋅    [30]
 57   ⋅    [29]
 58   ⋅    [30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[30] ~ 0.001505798625700349 / (1 + t) + 1.7014060348905122(u(t))[29] 
- 0.701406034890512(u(t))[28], (u(t))[1] ~ -0.0015057986257003572 / (1 + t)
 + 1.7014060348904776(u(t))[2] - 0.7014060348904776(u(t))[3]], [Int64[], In
t64[]], Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] >
 0, (1.0924177134554616 / (1 + t) + 508.8518237174903(u(t))[3] - 508.851823
7174902(u(t))[2])*(u(t))[2], (725.4739742821658(u(t))[3] - 725.473974282165
8(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0,
 (466.80720968681806(u(t))[3] - 466.80720968681806(u(t))[2])*(u(t))[3], (46
6.80720968681806(u(t))[4] - 466.80720968681806(u(t))[3])*(u(t))[3]), Differ
ential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (300.9587037173515(u(t))[4] -
 300.9587037173515(u(t))[3])*(u(t))[4], (300.9587037173515(u(t))[5] - 300.9
587037173515(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(
t))[5] > 0, (194.6254318817387(u(t))[5] - 194.6254318817387(u(t))[4])*(u(t)
)[5], (194.6254318817387(u(t))[6] - 194.6254318817387(u(t))[5])*(u(t))[5]),
 Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (126.45525998037883(u(
t))[6] - 126.45525998037883(u(t))[5])*(u(t))[6], (126.45525998037883(u(t))[
7] - 126.45525998037883(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ 
-ifelse((u(t))[7] > 0, (82.75935258368779(u(t))[7] - 82.75935258368779(u(t)
)[6])*(u(t))[7], (82.75935258368779(u(t))[8] - 82.75935258368779(u(t))[7])*
(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (54.7634016
8250905(u(t))[8] - 54.76340168250905(u(t))[7])*(u(t))[8], (54.7634016825090
5(u(t))[9] - 54.76340168250905(u(t))[8])*(u(t))[8]), Differential(t)((u(t))
[9]) ~ -ifelse((u(t))[9] > 0, (36.84571154259183(u(t))[9] - 36.845711542591
83(u(t))[8])*(u(t))[9], (36.84571154259183(u(t))[10] - 36.84571154259183(u(
t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (
25.40834035503878(u(t))[10] - 25.40834035503878(u(t))[9])*(u(t))[10], (25.4
0834035503878(u(t))[11] - 25.40834035503878(u(t))[10])*(u(t))[10]), Differe
ntial(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.15461953934479(u(t))[11]
 - 18.15461953934479(u(t))[10])*(u(t))[11], (18.15461953934479(u(t))[12] - 
18.15461953934479(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ 
-ifelse((u(t))[20] > 0, (25.408340355038746(u(t))[20] - 25.408340355038746(
u(t))[19])*(u(t))[20], (25.408340355038746(u(t))[21] - 25.408340355038746(u
(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0
, (36.84571154259191(u(t))[21] - 36.84571154259191(u(t))[20])*(u(t))[21], (
36.84571154259191(u(t))[22] - 36.84571154259191(u(t))[21])*(u(t))[21]), Dif
ferential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (54.76340168250905(u(t))
[22] - 54.76340168250905(u(t))[21])*(u(t))[22], (54.76340168250905(u(t))[23
] - 54.76340168250905(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~
 -ifelse((u(t))[23] > 0, (82.75935258368779(u(t))[23] - 82.75935258368779(u
(t))[22])*(u(t))[23], (82.75935258368779(u(t))[24] - 82.75935258368779(u(t)
)[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (
126.45525998037883(u(t))[24] - 126.45525998037883(u(t))[23])*(u(t))[24], (1
26.45525998037883(u(t))[25] - 126.45525998037883(u(t))[24])*(u(t))[24]), Di
fferential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (194.6254318817387(u(t)
)[25] - 194.6254318817387(u(t))[24])*(u(t))[25], (194.6254318817387(u(t))[2
6] - 194.6254318817387(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) 
~ -ifelse((u(t))[26] > 0, (300.9587037173515(u(t))[26] - 300.9587037173515(
u(t))[25])*(u(t))[26], (300.9587037173515(u(t))[27] - 300.9587037173515(u(t
))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, 
(466.80720968680595(u(t))[27] - 466.80720968680595(u(t))[26])*(u(t))[27], (
466.80720968680595(u(t))[28] - 466.80720968680595(u(t))[27])*(u(t))[27]), D
ifferential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (725.4739742821951(u(t
))[28] - 725.4739742821951(u(t))[27])*(u(t))[28], (725.4739742821951(u(t))[
29] - 725.4739742821951(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29])
 ~ -ifelse((u(t))[29] > 0, (404.4287934927362(u(t))[29] - 404.4287934927362
(u(t))[28])*(u(t))[29], (0.6089883214350124 / (1 + t) + 283.66879643929394(
u(t))[29] - 283.66879643929377(u(t))[28])*(u(t))[29])]))), [0.0024726231566
34768, 0.0038510323559302617, 0.0059932443424822734, 0.009315959345066682, 
0.014454034006386562, 0.022361969193544162, 0.03444519566621118, 0.05270556
608289023, 0.07984576661461423, 0.11920292202211757  …  0.8807970779778824,
 0.9201542333853858, 0.9472944339171098, 0.9655548043337888, 0.977638030806
4558, 0.9855459659936134, 0.9906840406549333, 0.9940067556575177, 0.9961489
676440698, 0.9975273768433652], (0.0, 20.0), SciMLBase.NullParameters(), Ba
se.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.St
andardODEProblem())
 SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, SciML
Base.NullParameters, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, 
ModelingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0x67020e9b, 0xd775bd75, 0x9e34ffb6, 0xccc531ec, 0x8
0357f9b)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋a
rg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x6aa9749b, 0x2fde3b20, 0x862d614d, 0xadf92334, 0xd8d69934)}
}, LinearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, 
Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbo
l, Nothing, ModelingToolkit.var"#472#generated_observed#471"{Bool, Modeling
Toolkit.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}, Ba
se.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.Stan
dardODEProblem}(SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, Model
ingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(
:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.v
ar"#_RGF_ModTag", (0x67020e9b, 0xd775bd75, 0x9e34ffb6, 0xccc531ec, 0x80357f
9b)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x6aa9749b, 0x2fde3b20, 0x862d614d, 0xadf92334, 0xd8d69934)}}, Li
nearAlgebra.UniformScaling{Bool}, Nothing, Nothing, Nothing, Nothing, Nothi
ng, Nothing, Nothing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, No
thing, ModelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolk
it.ODESystem, Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}(Modeling
Toolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋
arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"
#_RGF_ModTag", (0x67020e9b, 0xd775bd75, 0x9e34ffb6, 0xccc531ec, 0x80357f9b)
}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋
arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_Mod
Tag", (0x6aa9749b, 0x2fde3b20, 0x862d614d, 0xadf92334, 0xd8d69934)}}(Runtim
eGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), Modeli
ngToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x67020e9b
, 0xd775bd75, 0x9e34ffb6, 0xccc531ec, 0x80357f9b)}(quote
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (+)((/)(0.002472623156634768, (+)(1, t)), (ge
tindex)(ˍ₋arg1, 28))
            var"(u(t))[1]" = (+)((/)(-0.002472623156634768, (+)(1, t)), (ge
tindex)(ˍ₋arg1, 1))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
                (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, 
Val{1}(), Val{(28,)}(), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1), 0)
                            (*)((+)((*)(-510.5729767825508, var"(u(t))[1]")
, (*)(510.5729767825508, (getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1, 1))
                        else
                            (*)((+)((*)(-510.5729767825508, (getindex)(ˍ₋ar
g1, 1)), (*)(510.5729767825508, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1,
 1))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2), 0)
                            (*)((+)((*)(-536.5139606774583, (getindex)(ˍ₋ar
g1, 1)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1,
 2))
                        else
                            (*)((+)((*)(-536.5139606774583, (getindex)(ˍ₋ar
g1, 2)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1,
 2))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3), 0)
                            (*)((+)((*)(-339.8938320398733, (getindex)(ˍ₋ar
g1, 2)), (*)(339.8938320398733, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1,
 3))
                        else
                            (*)((+)((*)(-339.8938320398733, (getindex)(ˍ₋ar
g1, 3)), (*)(339.8938320398733, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1,
 3))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4), 0)
                            (*)((+)((*)(-215.96618521800934, (getindex)(ˍ₋a
rg1, 3)), (*)(215.96618521800934, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg
1, 4))
                        else
                            (*)((+)((*)(-215.96618521800934, (getindex)(ˍ₋a
rg1, 4)), (*)(215.96618521800934, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg
1, 4))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5), 0)
                            (*)((+)((*)(-137.8602738401593, (getindex)(ˍ₋ar
g1, 4)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1,
 5))
                        else
                            (*)((+)((*)(-137.8602738401593, (getindex)(ˍ₋ar
g1, 5)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1,
 5))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6), 0)
                            (*)((+)((*)(-88.64069899746065, (getindex)(ˍ₋ar
g1, 5)), (*)(88.64069899746065, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1,
 6))
                        else
                            (*)((+)((*)(-88.64069899746065, (getindex)(ˍ₋ar
g1, 6)), (*)(88.64069899746065, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1,
 6))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7), 0)
                            (*)((+)((*)(-57.63537301586889, (getindex)(ˍ₋ar
g1, 6)), (*)(57.63537301586889, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1,
 7))
                        else
                            (*)((+)((*)(-57.63537301586889, (getindex)(ˍ₋ar
g1, 7)), (*)(57.63537301586889, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1,
 7))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8), 0)
                            (*)((+)((*)(-38.121532476653655, (getindex)(ˍ₋a
rg1, 7)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg
1, 8))
                        else
                            (*)((+)((*)(-38.121532476653655, (getindex)(ˍ₋a
rg1, 8)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg
1, 8))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9), 0)
                            (*)((+)((*)(-25.8680677500096, (getindex)(ˍ₋arg
1, 8)), (*)(25.8680677500096, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 9
))
                        else
                            (*)((+)((*)(-25.8680677500096, (getindex)(ˍ₋arg
1, 9)), (*)(25.8680677500096, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 
9))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10), 0)
                            (*)((+)((*)(-18.218108062641644, (getindex)(ˍ₋a
rg1, 9)), (*)(18.218108062641644, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋ar
g1, 10))
                        else
                            (*)((+)((*)(-18.218108062641644, (getindex)(ˍ₋a
rg1, 10)), (*)(18.218108062641644, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋a
rg1, 10))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11), 0)
                            (*)((+)((*)(-13.5129426120403, (getindex)(ˍ₋arg
1, 10)), (*)(13.5129426120403, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1,
 11))
                        else
                            (*)((+)((*)(-13.5129426120403, (getindex)(ˍ₋arg
1, 11)), (*)(13.5129426120403, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1,
 11))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12), 0)
                            (*)((+)((*)(-10.732368798524625, (getindex)(ˍ₋a
rg1, 11)), (*)(10.732368798524625, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋a
rg1, 12))
                        else
                            (*)((+)((*)(-10.732368798524625, (getindex)(ˍ₋a
rg1, 12)), (*)(10.732368798524625, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋a
rg1, 12))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13), 0)
                            (*)((+)((*)(-9.273485690568227, (getindex)(ˍ₋ar
g1, 12)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg
1, 13))
                        else
                            (*)((+)((*)(-9.273485690568227, (getindex)(ˍ₋ar
g1, 13)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg
1, 13))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14), 0)
                            (*)((+)((*)(-8.819969376718124, (getindex)(ˍ₋ar
g1, 13)), (*)(8.819969376718124, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg
1, 14))
                        else
                            (*)((+)((*)(-8.819969376718124, (getindex)(ˍ₋ar
g1, 14)), (*)(8.819969376718124, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg
1, 14))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15), 0)
                            (*)((+)((*)(-9.273485690568227, (getindex)(ˍ₋ar
g1, 14)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg
1, 15))
                        else
                            (*)((+)((*)(-9.273485690568227, (getindex)(ˍ₋ar
g1, 15)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg
1, 15))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16), 0)
                            (*)((+)((*)(-10.73236879852462, (getindex)(ˍ₋ar
g1, 15)), (*)(10.73236879852462, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg
1, 16))
                        else
                            (*)((+)((*)(-10.73236879852462, (getindex)(ˍ₋ar
g1, 16)), (*)(10.73236879852462, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg
1, 16))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17), 0)
                            (*)((+)((*)(-13.512942612040309, (getindex)(ˍ₋a
rg1, 16)), (*)(13.512942612040309, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋a
rg1, 17))
                        else
                            (*)((+)((*)(-13.512942612040309, (getindex)(ˍ₋a
rg1, 17)), (*)(13.512942612040309, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋a
rg1, 17))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18), 0)
                            (*)((+)((*)(-18.218108062641672, (getindex)(ˍ₋a
rg1, 17)), (*)(18.218108062641672, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋a
rg1, 18))
                        else
                            (*)((+)((*)(-18.218108062641672, (getindex)(ˍ₋a
rg1, 18)), (*)(18.218108062641672, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋a
rg1, 18))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19), 0)
                            (*)((+)((*)(-25.868067750009544, (getindex)(ˍ₋a
rg1, 18)), (*)(25.868067750009544, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋a
rg1, 19))
                        else
                            (*)((+)((*)(-25.868067750009544, (getindex)(ˍ₋a
rg1, 19)), (*)(25.868067750009544, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋a
rg1, 19))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20), 0)
                            (*)((+)((*)(-38.121532476653655, (getindex)(ˍ₋a
rg1, 19)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋a
rg1, 20))
                        else
                            (*)((+)((*)(-38.121532476653655, (getindex)(ˍ₋a
rg1, 20)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋a
rg1, 20))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21), 0)
                            (*)((+)((*)(-57.63537301586917, (getindex)(ˍ₋ar
g1, 20)), (*)(57.63537301586917, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg
1, 21))
                        else
                            (*)((+)((*)(-57.63537301586917, (getindex)(ˍ₋ar
g1, 21)), (*)(57.63537301586917, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg
1, 21))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22), 0)
                            (*)((+)((*)(-88.64069899745934, (getindex)(ˍ₋ar
g1, 21)), (*)(88.64069899745934, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg
1, 22))
                        else
                            (*)((+)((*)(-88.64069899745934, (getindex)(ˍ₋ar
g1, 22)), (*)(88.64069899745934, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg
1, 22))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23), 0)
                            (*)((+)((*)(-137.8602738401593, (getindex)(ˍ₋ar
g1, 22)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg
1, 23))
                        else
                            (*)((+)((*)(-137.8602738401593, (getindex)(ˍ₋ar
g1, 23)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg
1, 23))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24), 0)
                            (*)((+)((*)(-215.96618521801062, (getindex)(ˍ₋a
rg1, 23)), (*)(215.96618521801062, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋a
rg1, 24))
                        else
                            (*)((+)((*)(-215.96618521801062, (getindex)(ˍ₋a
rg1, 24)), (*)(215.96618521801062, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋a
rg1, 24))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25), 0)
                            (*)((+)((*)(-339.89383203987967, (getindex)(ˍ₋a
rg1, 24)), (*)(339.89383203987967, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋a
rg1, 25))
                        else
                            (*)((+)((*)(-339.89383203987967, (getindex)(ˍ₋a
rg1, 25)), (*)(339.89383203987967, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋a
rg1, 25))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26), 0)
                            (*)((+)((*)(-536.5139606774583, (getindex)(ˍ₋ar
g1, 25)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg
1, 26))
                        else
                            (*)((+)((*)(-536.5139606774583, (getindex)(ˍ₋ar
g1, 26)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg
1, 26))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27), 0)
                            (*)((+)((*)(-510.5729767825508, (getindex)(ˍ₋ar
g1, 26)), (*)(510.5729767825508, (getindex)(ˍ₋arg1, 27))), (getindex)(ˍ₋arg
1, 27))
                        else
                            (*)((+)((*)(-510.5729767825508, (getindex)(ˍ₋ar
g1, 27)), (*)(510.5729767825508, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg
1, 27))
                        end), (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28), 0)
                            (*)((+)((*)(-404.4287934927362, (getindex)(ˍ₋ar
g1, 27)), (*)(404.4287934927362, (getindex)(ˍ₋arg1, 28))), (getindex)(ˍ₋arg
1, 28))
                        else
                            (*)((+)((*)(-404.4287934927362, (getindex)(ˍ₋ar
g1, 28)), (*)(404.4287934927362, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 28))
                        end))
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x6aa9749b, 0x2fde3b20, 0x862d614d, 0xadf92334, 0xd8d69934)}(quot
e
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (+)((/)(0.002472623156634768, (+)(1, t)), (ge
tindex)(ˍ₋arg1, 28))
            var"(u(t))[1]" = (+)((/)(-0.002472623156634768, (+)(1, t)), (ge
tindex)(ˍ₋arg1, 1))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/Symbolics/FGTCH/src/build_function.jl:519 =#
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds
 begin
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 1),
 0)
                                    (*)((+)((*)(-510.5729767825508, var"(u(
t))[1]"), (*)(510.5729767825508, (getindex)(ˍ₋arg1, 1))), (getindex)(ˍ₋arg1
, 1))
                                else
                                    (*)((+)((*)(-510.5729767825508, (getind
ex)(ˍ₋arg1, 1)), (*)(510.5729767825508, (getindex)(ˍ₋arg1, 2))), (getindex)
(ˍ₋arg1, 1))
                                end)
                        ˍ₋out[2] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 2),
 0)
                                    (*)((+)((*)(-536.5139606774583, (getind
ex)(ˍ₋arg1, 1)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 2))), (getindex)
(ˍ₋arg1, 2))
                                else
                                    (*)((+)((*)(-536.5139606774583, (getind
ex)(ˍ₋arg1, 2)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 3))), (getindex)
(ˍ₋arg1, 2))
                                end)
                        ˍ₋out[3] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 3),
 0)
                                    (*)((+)((*)(-339.8938320398733, (getind
ex)(ˍ₋arg1, 2)), (*)(339.8938320398733, (getindex)(ˍ₋arg1, 3))), (getindex)
(ˍ₋arg1, 3))
                                else
                                    (*)((+)((*)(-339.8938320398733, (getind
ex)(ˍ₋arg1, 3)), (*)(339.8938320398733, (getindex)(ˍ₋arg1, 4))), (getindex)
(ˍ₋arg1, 3))
                                end)
                        ˍ₋out[4] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 4),
 0)
                                    (*)((+)((*)(-215.96618521800934, (getin
dex)(ˍ₋arg1, 3)), (*)(215.96618521800934, (getindex)(ˍ₋arg1, 4))), (getinde
x)(ˍ₋arg1, 4))
                                else
                                    (*)((+)((*)(-215.96618521800934, (getin
dex)(ˍ₋arg1, 4)), (*)(215.96618521800934, (getindex)(ˍ₋arg1, 5))), (getinde
x)(ˍ₋arg1, 4))
                                end)
                        ˍ₋out[5] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 5),
 0)
                                    (*)((+)((*)(-137.8602738401593, (getind
ex)(ˍ₋arg1, 4)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 5))), (getindex)
(ˍ₋arg1, 5))
                                else
                                    (*)((+)((*)(-137.8602738401593, (getind
ex)(ˍ₋arg1, 5)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 6))), (getindex)
(ˍ₋arg1, 5))
                                end)
                        ˍ₋out[6] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 6),
 0)
                                    (*)((+)((*)(-88.64069899746065, (getind
ex)(ˍ₋arg1, 5)), (*)(88.64069899746065, (getindex)(ˍ₋arg1, 6))), (getindex)
(ˍ₋arg1, 6))
                                else
                                    (*)((+)((*)(-88.64069899746065, (getind
ex)(ˍ₋arg1, 6)), (*)(88.64069899746065, (getindex)(ˍ₋arg1, 7))), (getindex)
(ˍ₋arg1, 6))
                                end)
                        ˍ₋out[7] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 7),
 0)
                                    (*)((+)((*)(-57.63537301586889, (getind
ex)(ˍ₋arg1, 6)), (*)(57.63537301586889, (getindex)(ˍ₋arg1, 7))), (getindex)
(ˍ₋arg1, 7))
                                else
                                    (*)((+)((*)(-57.63537301586889, (getind
ex)(ˍ₋arg1, 7)), (*)(57.63537301586889, (getindex)(ˍ₋arg1, 8))), (getindex)
(ˍ₋arg1, 7))
                                end)
                        ˍ₋out[8] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 8),
 0)
                                    (*)((+)((*)(-38.121532476653655, (getin
dex)(ˍ₋arg1, 7)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 8))), (getinde
x)(ˍ₋arg1, 8))
                                else
                                    (*)((+)((*)(-38.121532476653655, (getin
dex)(ˍ₋arg1, 8)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 9))), (getinde
x)(ˍ₋arg1, 8))
                                end)
                        ˍ₋out[9] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 9),
 0)
                                    (*)((+)((*)(-25.8680677500096, (getinde
x)(ˍ₋arg1, 8)), (*)(25.8680677500096, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ
₋arg1, 9))
                                else
                                    (*)((+)((*)(-25.8680677500096, (getinde
x)(ˍ₋arg1, 9)), (*)(25.8680677500096, (getindex)(ˍ₋arg1, 10))), (getindex)(
ˍ₋arg1, 9))
                                end)
                        ˍ₋out[10] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 10
), 0)
                                    (*)((+)((*)(-18.218108062641644, (getin
dex)(ˍ₋arg1, 9)), (*)(18.218108062641644, (getindex)(ˍ₋arg1, 10))), (getind
ex)(ˍ₋arg1, 10))
                                else
                                    (*)((+)((*)(-18.218108062641644, (getin
dex)(ˍ₋arg1, 10)), (*)(18.218108062641644, (getindex)(ˍ₋arg1, 11))), (getin
dex)(ˍ₋arg1, 10))
                                end)
                        ˍ₋out[11] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 11
), 0)
                                    (*)((+)((*)(-13.5129426120403, (getinde
x)(ˍ₋arg1, 10)), (*)(13.5129426120403, (getindex)(ˍ₋arg1, 11))), (getindex)
(ˍ₋arg1, 11))
                                else
                                    (*)((+)((*)(-13.5129426120403, (getinde
x)(ˍ₋arg1, 11)), (*)(13.5129426120403, (getindex)(ˍ₋arg1, 12))), (getindex)
(ˍ₋arg1, 11))
                                end)
                        ˍ₋out[12] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 12
), 0)
                                    (*)((+)((*)(-10.732368798524625, (getin
dex)(ˍ₋arg1, 11)), (*)(10.732368798524625, (getindex)(ˍ₋arg1, 12))), (getin
dex)(ˍ₋arg1, 12))
                                else
                                    (*)((+)((*)(-10.732368798524625, (getin
dex)(ˍ₋arg1, 12)), (*)(10.732368798524625, (getindex)(ˍ₋arg1, 13))), (getin
dex)(ˍ₋arg1, 12))
                                end)
                        ˍ₋out[13] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 13
), 0)
                                    (*)((+)((*)(-9.273485690568227, (getind
ex)(ˍ₋arg1, 12)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 13))), (getinde
x)(ˍ₋arg1, 13))
                                else
                                    (*)((+)((*)(-9.273485690568227, (getind
ex)(ˍ₋arg1, 13)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 14))), (getinde
x)(ˍ₋arg1, 13))
                                end)
                        ˍ₋out[14] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 14
), 0)
                                    (*)((+)((*)(-8.819969376718124, (getind
ex)(ˍ₋arg1, 13)), (*)(8.819969376718124, (getindex)(ˍ₋arg1, 14))), (getinde
x)(ˍ₋arg1, 14))
                                else
                                    (*)((+)((*)(-8.819969376718124, (getind
ex)(ˍ₋arg1, 14)), (*)(8.819969376718124, (getindex)(ˍ₋arg1, 15))), (getinde
x)(ˍ₋arg1, 14))
                                end)
                        ˍ₋out[15] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 15
), 0)
                                    (*)((+)((*)(-9.273485690568227, (getind
ex)(ˍ₋arg1, 14)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 15))), (getinde
x)(ˍ₋arg1, 15))
                                else
                                    (*)((+)((*)(-9.273485690568227, (getind
ex)(ˍ₋arg1, 15)), (*)(9.273485690568227, (getindex)(ˍ₋arg1, 16))), (getinde
x)(ˍ₋arg1, 15))
                                end)
                        ˍ₋out[16] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 16
), 0)
                                    (*)((+)((*)(-10.73236879852462, (getind
ex)(ˍ₋arg1, 15)), (*)(10.73236879852462, (getindex)(ˍ₋arg1, 16))), (getinde
x)(ˍ₋arg1, 16))
                                else
                                    (*)((+)((*)(-10.73236879852462, (getind
ex)(ˍ₋arg1, 16)), (*)(10.73236879852462, (getindex)(ˍ₋arg1, 17))), (getinde
x)(ˍ₋arg1, 16))
                                end)
                        ˍ₋out[17] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 17
), 0)
                                    (*)((+)((*)(-13.512942612040309, (getin
dex)(ˍ₋arg1, 16)), (*)(13.512942612040309, (getindex)(ˍ₋arg1, 17))), (getin
dex)(ˍ₋arg1, 17))
                                else
                                    (*)((+)((*)(-13.512942612040309, (getin
dex)(ˍ₋arg1, 17)), (*)(13.512942612040309, (getindex)(ˍ₋arg1, 18))), (getin
dex)(ˍ₋arg1, 17))
                                end)
                        ˍ₋out[18] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 18
), 0)
                                    (*)((+)((*)(-18.218108062641672, (getin
dex)(ˍ₋arg1, 17)), (*)(18.218108062641672, (getindex)(ˍ₋arg1, 18))), (getin
dex)(ˍ₋arg1, 18))
                                else
                                    (*)((+)((*)(-18.218108062641672, (getin
dex)(ˍ₋arg1, 18)), (*)(18.218108062641672, (getindex)(ˍ₋arg1, 19))), (getin
dex)(ˍ₋arg1, 18))
                                end)
                        ˍ₋out[19] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 19
), 0)
                                    (*)((+)((*)(-25.868067750009544, (getin
dex)(ˍ₋arg1, 18)), (*)(25.868067750009544, (getindex)(ˍ₋arg1, 19))), (getin
dex)(ˍ₋arg1, 19))
                                else
                                    (*)((+)((*)(-25.868067750009544, (getin
dex)(ˍ₋arg1, 19)), (*)(25.868067750009544, (getindex)(ˍ₋arg1, 20))), (getin
dex)(ˍ₋arg1, 19))
                                end)
                        ˍ₋out[20] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 20
), 0)
                                    (*)((+)((*)(-38.121532476653655, (getin
dex)(ˍ₋arg1, 19)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 20))), (getin
dex)(ˍ₋arg1, 20))
                                else
                                    (*)((+)((*)(-38.121532476653655, (getin
dex)(ˍ₋arg1, 20)), (*)(38.121532476653655, (getindex)(ˍ₋arg1, 21))), (getin
dex)(ˍ₋arg1, 20))
                                end)
                        ˍ₋out[21] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 21
), 0)
                                    (*)((+)((*)(-57.63537301586917, (getind
ex)(ˍ₋arg1, 20)), (*)(57.63537301586917, (getindex)(ˍ₋arg1, 21))), (getinde
x)(ˍ₋arg1, 21))
                                else
                                    (*)((+)((*)(-57.63537301586917, (getind
ex)(ˍ₋arg1, 21)), (*)(57.63537301586917, (getindex)(ˍ₋arg1, 22))), (getinde
x)(ˍ₋arg1, 21))
                                end)
                        ˍ₋out[22] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 22
), 0)
                                    (*)((+)((*)(-88.64069899745934, (getind
ex)(ˍ₋arg1, 21)), (*)(88.64069899745934, (getindex)(ˍ₋arg1, 22))), (getinde
x)(ˍ₋arg1, 22))
                                else
                                    (*)((+)((*)(-88.64069899745934, (getind
ex)(ˍ₋arg1, 22)), (*)(88.64069899745934, (getindex)(ˍ₋arg1, 23))), (getinde
x)(ˍ₋arg1, 22))
                                end)
                        ˍ₋out[23] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 23
), 0)
                                    (*)((+)((*)(-137.8602738401593, (getind
ex)(ˍ₋arg1, 22)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 23))), (getinde
x)(ˍ₋arg1, 23))
                                else
                                    (*)((+)((*)(-137.8602738401593, (getind
ex)(ˍ₋arg1, 23)), (*)(137.8602738401593, (getindex)(ˍ₋arg1, 24))), (getinde
x)(ˍ₋arg1, 23))
                                end)
                        ˍ₋out[24] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 24
), 0)
                                    (*)((+)((*)(-215.96618521801062, (getin
dex)(ˍ₋arg1, 23)), (*)(215.96618521801062, (getindex)(ˍ₋arg1, 24))), (getin
dex)(ˍ₋arg1, 24))
                                else
                                    (*)((+)((*)(-215.96618521801062, (getin
dex)(ˍ₋arg1, 24)), (*)(215.96618521801062, (getindex)(ˍ₋arg1, 25))), (getin
dex)(ˍ₋arg1, 24))
                                end)
                        ˍ₋out[25] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 25
), 0)
                                    (*)((+)((*)(-339.89383203987967, (getin
dex)(ˍ₋arg1, 24)), (*)(339.89383203987967, (getindex)(ˍ₋arg1, 25))), (getin
dex)(ˍ₋arg1, 25))
                                else
                                    (*)((+)((*)(-339.89383203987967, (getin
dex)(ˍ₋arg1, 25)), (*)(339.89383203987967, (getindex)(ˍ₋arg1, 26))), (getin
dex)(ˍ₋arg1, 25))
                                end)
                        ˍ₋out[26] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 26
), 0)
                                    (*)((+)((*)(-536.5139606774583, (getind
ex)(ˍ₋arg1, 25)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 26))), (getinde
x)(ˍ₋arg1, 26))
                                else
                                    (*)((+)((*)(-536.5139606774583, (getind
ex)(ˍ₋arg1, 26)), (*)(536.5139606774583, (getindex)(ˍ₋arg1, 27))), (getinde
x)(ˍ₋arg1, 26))
                                end)
                        ˍ₋out[27] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 27
), 0)
                                    (*)((+)((*)(-510.5729767825508, (getind
ex)(ˍ₋arg1, 26)), (*)(510.5729767825508, (getindex)(ˍ₋arg1, 27))), (getinde
x)(ˍ₋arg1, 27))
                                else
                                    (*)((+)((*)(-510.5729767825508, (getind
ex)(ˍ₋arg1, 27)), (*)(510.5729767825508, (getindex)(ˍ₋arg1, 28))), (getinde
x)(ˍ₋arg1, 27))
                                end)
                        ˍ₋out[28] = (*)(-1//1, if (>)((getindex)(ˍ₋arg1, 28
), 0)
                                    (*)((+)((*)(-404.4287934927362, (getind
ex)(ˍ₋arg1, 27)), (*)(404.4287934927362, (getindex)(ˍ₋arg1, 28))), (getinde
x)(ˍ₋arg1, 28))
                                else
                                    (*)((+)((*)(-404.4287934927362, (getind
ex)(ˍ₋arg1, 28)), (*)(404.4287934927362, var"(u(t))[30]")), (getindex)(ˍ₋ar
g1, 28))
                                end)
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), LinearAlgebra.UniformScaling{Bool}(true), nothing, nothing, nothing,
 nothing, nothing, nothing, nothing, nothing, nothing, nothing, [Symbol("ge
tindex(u(t), 2)"), Symbol("getindex(u(t), 3)"), Symbol("getindex(u(t), 4)")
, Symbol("getindex(u(t), 5)"), Symbol("getindex(u(t), 6)"), Symbol("getinde
x(u(t), 7)"), Symbol("getindex(u(t), 8)"), Symbol("getindex(u(t), 9)"), Sym
bol("getindex(u(t), 10)"), Symbol("getindex(u(t), 11)")  …  Symbol("getinde
x(u(t), 20)"), Symbol("getindex(u(t), 21)"), Symbol("getindex(u(t), 22)"), 
Symbol("getindex(u(t), 23)"), Symbol("getindex(u(t), 24)"), Symbol("getinde
x(u(t), 25)"), Symbol("getindex(u(t), 26)"), Symbol("getindex(u(t), 27)"), 
Symbol("getindex(u(t), 28)"), Symbol("getindex(u(t), 29)")], :t, nothing, M
odelingToolkit.var"#472#generated_observed#471"{Bool, ModelingToolkit.ODESy
stem, Dict{Any, Any}}(false, Core.Box(Symbolics.Equation[(u(t))[30] ~ 0.002
472623156634768 / (1 + t) + (u(t))[29], (u(t))[1] ~ -0.002472623156634768 /
 (1 + t) + (u(t))[2]]), ModelingToolkit.ODESystem(Symbolics.Equation[Differ
ential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (510.5729767825508(u(t))[2] -
 510.5729767825508(u(t))[1])*(u(t))[2], (510.5729767825508(u(t))[3] - 510.5
729767825508(u(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(
t))[3] > 0, (536.5139606774583(u(t))[3] - 536.5139606774583(u(t))[2])*(u(t)
)[3], (536.5139606774583(u(t))[4] - 536.5139606774583(u(t))[3])*(u(t))[3]),
 Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (339.8938320398733(u(t
))[4] - 339.8938320398733(u(t))[3])*(u(t))[4], (339.8938320398733(u(t))[5] 
- 339.8938320398733(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ife
lse((u(t))[5] > 0, (215.96618521800934(u(t))[5] - 215.96618521800934(u(t))[
4])*(u(t))[5], (215.96618521800934(u(t))[6] - 215.96618521800934(u(t))[5])*
(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (137.860273
8401593(u(t))[6] - 137.8602738401593(u(t))[5])*(u(t))[6], (137.860273840159
3(u(t))[7] - 137.8602738401593(u(t))[6])*(u(t))[6]), Differential(t)((u(t))
[7]) ~ -ifelse((u(t))[7] > 0, (88.64069899746065(u(t))[7] - 88.640698997460
65(u(t))[6])*(u(t))[7], (88.64069899746065(u(t))[8] - 88.64069899746065(u(t
))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (57.
63537301586889(u(t))[8] - 57.63537301586889(u(t))[7])*(u(t))[8], (57.635373
01586889(u(t))[9] - 57.63537301586889(u(t))[8])*(u(t))[8]), Differential(t)
((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (38.121532476653655(u(t))[9] - 38.1215
32476653655(u(t))[8])*(u(t))[9], (38.121532476653655(u(t))[10] - 38.1215324
76653655(u(t))[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))
[10] > 0, (25.8680677500096(u(t))[10] - 25.8680677500096(u(t))[9])*(u(t))[1
0], (25.8680677500096(u(t))[11] - 25.8680677500096(u(t))[10])*(u(t))[10]), 
Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.218108062641644(u
(t))[11] - 18.218108062641644(u(t))[10])*(u(t))[11], (18.218108062641644(u(
t))[12] - 18.218108062641644(u(t))[11])*(u(t))[11])  …  Differential(t)((u(
t))[20]) ~ -ifelse((u(t))[20] > 0, (25.868067750009544(u(t))[20] - 25.86806
7750009544(u(t))[19])*(u(t))[20], (25.868067750009544(u(t))[21] - 25.868067
750009544(u(t))[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(
t))[21] > 0, (38.121532476653655(u(t))[21] - 38.121532476653655(u(t))[20])*
(u(t))[21], (38.121532476653655(u(t))[22] - 38.121532476653655(u(t))[21])*(
u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (57.63537
301586917(u(t))[22] - 57.63537301586917(u(t))[21])*(u(t))[22], (57.63537301
586917(u(t))[23] - 57.63537301586917(u(t))[22])*(u(t))[22]), Differential(t
)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (88.64069899745934(u(t))[23] - 88.6
4069899745934(u(t))[22])*(u(t))[23], (88.64069899745934(u(t))[24] - 88.6406
9899745934(u(t))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u
(t))[24] > 0, (137.8602738401593(u(t))[24] - 137.8602738401593(u(t))[23])*(
u(t))[24], (137.8602738401593(u(t))[25] - 137.8602738401593(u(t))[24])*(u(t
))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (215.9661852
1801062(u(t))[25] - 215.96618521801062(u(t))[24])*(u(t))[25], (215.96618521
801062(u(t))[26] - 215.96618521801062(u(t))[25])*(u(t))[25]), Differential(
t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (339.89383203987967(u(t))[26] - 33
9.89383203987967(u(t))[25])*(u(t))[26], (339.89383203987967(u(t))[27] - 339
.89383203987967(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifel
se((u(t))[27] > 0, (536.5139606774583(u(t))[27] - 536.5139606774583(u(t))[2
6])*(u(t))[27], (536.5139606774583(u(t))[28] - 536.5139606774583(u(t))[27])
*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (510.57
29767825508(u(t))[28] - 510.5729767825508(u(t))[27])*(u(t))[28], (510.57297
67825508(u(t))[29] - 510.5729767825508(u(t))[28])*(u(t))[28]), Differential
(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (404.4287934927362(u(t))[29] - 40
4.4287934927362(u(t))[28])*(u(t))[29], (404.4287934927362(u(t))[30] - 404.4
287934927362(u(t))[29])*(u(t))[29])], t, SymbolicUtils.Term{Real, Nothing}[
(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8]
, (u(t))[9], (u(t))[10], (u(t))[11]  …  (u(t))[20], (u(t))[21], (u(t))[22],
 (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u
(t))[29]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(
t))[30] ~ 0.002472623156634768 / (1 + t) + (u(t))[29], (u(t))[1] ~ -0.00247
2623156634768 / (1 + t) + (u(t))[2]], Base.RefValue{Vector{Symbolics.Num}}(
Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), B
ase.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix
{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{
Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys2, ModelingTool
kit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.6645238567001591, (u(t))[18
] => 0.7576999316909356, (u(t))[8] => 0.0311664502774546, (u(t))[10] => 0.0
7474880024081432, (u(t))[27] => 0.9949412201485321, (u(t))[28] => 0.9968051
045453842, (u(t))[2] => 0.001236311578317384, (u(t))[24] => 0.9801150492065
314, (u(t))[30] => 1.0012363115783174, (u(t))[21] => 0.9252511997591857…), 
nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[Model
ingToolkit.SymbolicContinuousCallback(Symbolics.Equation[], Symbolics.Equat
ion[])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetad
ata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAligne
dGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, Me
thodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDESystem, Base.RefV
alue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSp
ace{1, 1, MethodOfLines.EdgeAlignedGrid}(MethodOfLines.VariableMap(Any[u(t,
 x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dic
t{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64
, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{Symb
olicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Bas
e.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicU
tils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.Im
mutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{
Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term
{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) =
> [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))
[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23
], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], 
(u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any
}}, Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.003917167752596873,
 0.006200391950338835, 0.009801358083433409, 0.015461100972823438, 0.024308
800614114, 0.0380240999407952, 0.059009712490737665, 0.09048788799089097  …
  0.909512112009109, 0.9409902875092624, 0.9619759000592047, 0.975691199385
886, 0.9845388990271766, 0.9901986419165666, 0.9937996080496612, 0.99608283
22474031, 0.9975273768433652, 1.0]), Dict{SymbolicUtils.Sym{Real, Base.Immu
tableDict{DataType, Any}}, Vector{Float64}}(x => [-0.001236311578317384, 0.
001236311578317384, 0.0031948954546158204, 0.005058779851467854, 0.00800087
5016886122, 0.012631229528128424, 0.01988495079346872, 0.0311664502774546, 
0.04851690621576643, 0.07474880024081432  …  0.9252511997591857, 0.95148309
37842336, 0.9688335497225453, 0.9801150492065314, 0.9873687704718717, 0.991
9991249831139, 0.9949412201485321, 0.9968051045453842, 0.9987636884216826, 
1.0012363115783174]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataT
ype, Any}}, Vector{Float64}}(x => [0.002472623156634768]), Dict{SymbolicUti
ls.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple
{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((29,))), Dict{SymbolicUti
ls.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple
{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), MethodOfLines.M
OLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.ScalarizedD
iscretization}(Dict{Symbolics.Num, Vector{Float64}}(x => [0.0, 0.0024726231
56634768, 0.003917167752596873, 0.006200391950338835, 0.009801358083433409,
 0.015461100972823438, 0.024308800614114, 0.0380240999407952, 0.05900971249
0737665, 0.09048788799089097  …  0.909512112009109, 0.9409902875092624, 0.9
619759000592047, 0.975691199385886, 0.9845388990271766, 0.9901986419165666,
 0.9937996080496612, 0.9960828322474031, 0.9975273768433652, 1.0]), t, 2, M
ethodOfLines.UpwindScheme(1), MethodOfLines.EdgeAlignedGrid(), true, false,
 MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tupl
e{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equat
ion[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbo
lics.Equation[u(0, x) ~ x, Differential(x)(u(t, 0.0)) ~ 1 / (1 + t), Differ
ential(x)(u(t, 1.0)) ~ 1 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.V
arDomainPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Sy
mbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict
{Any, Any}(), nothing, Any[], :pdesys2, nothing), false, Base.RefValue{Any}
(nothing)), ModelingToolkit.SystemStructures.TearingState{ModelingToolkit.O
DESystem}(ModelingToolkit.ODESystem(Symbolics.Equation[Differential(t)((u(t
))[2]) ~ -ifelse((u(t))[2] > 0, (510.5729767825508(u(t))[2] - 510.572976782
5508(u(t))[1])*(u(t))[2], (510.5729767825508(u(t))[3] - 510.5729767825508(u
(t))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (5
36.5139606774583(u(t))[3] - 536.5139606774583(u(t))[2])*(u(t))[3], (536.513
9606774583(u(t))[4] - 536.5139606774583(u(t))[3])*(u(t))[3]), Differential(
t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (339.8938320398733(u(t))[4] - 339.89
38320398733(u(t))[3])*(u(t))[4], (339.8938320398733(u(t))[5] - 339.89383203
98733(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] 
> 0, (215.96618521800934(u(t))[5] - 215.96618521800934(u(t))[4])*(u(t))[5],
 (215.96618521800934(u(t))[6] - 215.96618521800934(u(t))[5])*(u(t))[5]), Di
fferential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (137.8602738401593(u(t))[
6] - 137.8602738401593(u(t))[5])*(u(t))[6], (137.8602738401593(u(t))[7] - 1
37.8602738401593(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse
((u(t))[7] > 0, (88.64069899746065(u(t))[7] - 88.64069899746065(u(t))[6])*(
u(t))[7], (88.64069899746065(u(t))[8] - 88.64069899746065(u(t))[7])*(u(t))[
7]), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (57.63537301586889
(u(t))[8] - 57.63537301586889(u(t))[7])*(u(t))[8], (57.63537301586889(u(t))
[9] - 57.63537301586889(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ 
-ifelse((u(t))[9] > 0, (38.121532476653655(u(t))[9] - 38.121532476653655(u(
t))[8])*(u(t))[9], (38.121532476653655(u(t))[10] - 38.121532476653655(u(t))
[9])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.
8680677500096(u(t))[10] - 25.8680677500096(u(t))[9])*(u(t))[10], (25.868067
7500096(u(t))[11] - 25.8680677500096(u(t))[10])*(u(t))[10]), Differential(t
)((u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.218108062641644(u(t))[11] - 18.
218108062641644(u(t))[10])*(u(t))[11], (18.218108062641644(u(t))[12] - 18.2
18108062641644(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -if
else((u(t))[20] > 0, (25.868067750009544(u(t))[20] - 25.868067750009544(u(t
))[19])*(u(t))[20], (25.868067750009544(u(t))[21] - 25.868067750009544(u(t)
)[20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (
38.121532476653655(u(t))[21] - 38.121532476653655(u(t))[20])*(u(t))[21], (3
8.121532476653655(u(t))[22] - 38.121532476653655(u(t))[21])*(u(t))[21]), Di
fferential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (57.63537301586917(u(t)
)[22] - 57.63537301586917(u(t))[21])*(u(t))[22], (57.63537301586917(u(t))[2
3] - 57.63537301586917(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) 
~ -ifelse((u(t))[23] > 0, (88.64069899745934(u(t))[23] - 88.64069899745934(
u(t))[22])*(u(t))[23], (88.64069899745934(u(t))[24] - 88.64069899745934(u(t
))[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, 
(137.8602738401593(u(t))[24] - 137.8602738401593(u(t))[23])*(u(t))[24], (13
7.8602738401593(u(t))[25] - 137.8602738401593(u(t))[24])*(u(t))[24]), Diffe
rential(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (215.96618521801062(u(t))[
25] - 215.96618521801062(u(t))[24])*(u(t))[25], (215.96618521801062(u(t))[2
6] - 215.96618521801062(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26])
 ~ -ifelse((u(t))[26] > 0, (339.89383203987967(u(t))[26] - 339.893832039879
67(u(t))[25])*(u(t))[26], (339.89383203987967(u(t))[27] - 339.8938320398796
7(u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] 
> 0, (536.5139606774583(u(t))[27] - 536.5139606774583(u(t))[26])*(u(t))[27]
, (536.5139606774583(u(t))[28] - 536.5139606774583(u(t))[27])*(u(t))[27]), 
Differential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (510.5729767825508(u(
t))[28] - 510.5729767825508(u(t))[27])*(u(t))[28], (510.5729767825508(u(t))
[29] - 510.5729767825508(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]
) ~ -ifelse((u(t))[29] > 0, (404.4287934927362(u(t))[29] - 404.428793492736
2(u(t))[28])*(u(t))[29], (404.4287934927362(u(t))[30] - 404.4287934927362(u
(t))[29])*(u(t))[29])], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(
t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (
u(t))[10], (u(t))[11]  …  (u(t))[20], (u(t))[21], (u(t))[22], (u(t))[23], (
u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29]], Any
[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[30] ~ 0.00
2472623156634768 / (1 + t) + (u(t))[29], (u(t))[1] ~ -0.002472623156634768 
/ (1 + t) + (u(t))[2]], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[
]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{A
ny}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num
}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}
}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys2, ModelingToolkit.ODESystem[
], Dict{Any, Any}((u(t))[17] => 0.6645238567001591, (u(t))[18] => 0.7576999
316909356, (u(t))[8] => 0.0311664502774546, (u(t))[10] => 0.074748800240814
32, (u(t))[27] => 0.9949412201485321, (u(t))[28] => 0.9968051045453842, (u(
t))[2] => 0.001236311578317384, (u(t))[24] => 0.9801150492065314, (u(t))[30
] => 1.0012363115783174, (u(t))[21] => 0.9252511997591857…), nothing, nothi
ng, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.Sym
bolicContinuousCallback(Symbolics.Equation[], Symbolics.Equation[])], Model
ingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}(
), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}, Method
OfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.Sc
alarizedDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{Any}, Met
hodOfLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1, Meth
odOfLines.EdgeAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], Symbolic
Utils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUtil
s.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Float64}}(x 
=> (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnTy
pe{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDic
t{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tu
ple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{Da
taType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.Imm
utableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.Im
mutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], 
(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8]
, (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24],
 (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30]]), 
Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Vector{Flo
at64}}(x => [0.0, 0.002472623156634768, 0.003917167752596873, 0.00620039195
0338835, 0.009801358083433409, 0.015461100972823438, 0.024308800614114, 0.0
380240999407952, 0.059009712490737665, 0.09048788799089097  …  0.9095121120
09109, 0.9409902875092624, 0.9619759000592047, 0.975691199385886, 0.9845388
990271766, 0.9901986419165666, 0.9937996080496612, 0.9960828322474031, 0.99
75273768433652, 1.0]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{Data
Type, Any}}, Vector{Float64}}(x => [-0.001236311578317384, 0.00123631157831
7384, 0.0031948954546158204, 0.005058779851467854, 0.008000875016886122, 0.
012631229528128424, 0.01988495079346872, 0.0311664502774546, 0.048516906215
76643, 0.07474880024081432  …  0.9252511997591857, 0.9514830937842336, 0.96
88335497225453, 0.9801150492065314, 0.9873687704718717, 0.9919991249831139,
 0.9949412201485321, 0.9968051045453842, 0.9987636884216826, 1.001236311578
3174]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Ve
ctor{Float64}}(x => [0.002472623156634768]), Dict{SymbolicUtils.Term{Real, 
Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{In
t64}}}}(u(t, x) => CartesianIndices((29,))), Dict{SymbolicUtils.Term{Real, 
Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{In
t64}}}}(u(t, x) => CartesianIndices((30,)))), MethodOfLines.MOLFiniteDiffer
ence{MethodOfLines.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscretization}
(Dict{Symbolics.Num, Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.00
3917167752596873, 0.006200391950338835, 0.009801358083433409, 0.01546110097
2823438, 0.024308800614114, 0.0380240999407952, 0.059009712490737665, 0.090
48788799089097  …  0.909512112009109, 0.9409902875092624, 0.961975900059204
7, 0.975691199385886, 0.9845388990271766, 0.9901986419165666, 0.99379960804
96612, 0.9960828322474031, 0.9975273768433652, 1.0]), t, 2, MethodOfLines.U
pwindScheme(1), MethodOfLines.EdgeAlignedGrid(), true, false, MethodOfLines
.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTupl
e{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equation[Differenti
al(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equation[
u(0, x) ~ x, Differential(x)(u(t, 0.0)) ~ 1 / (1 + t), Differential(x)(u(t,
 1.0)) ~ 1 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairin
g(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t,
 x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), 
nothing, Any[], :pdesys2, nothing), false, Base.RefValue{Any}(nothing)), no
thing, ModelingToolkit.Substitutions(Symbolics.Equation[(u(t))[30] ~ 0.0024
72623156634768 / (1 + t) + (u(t))[29], (u(t))[1] ~ -0.002472623156634768 / 
(1 + t) + (u(t))[2]], [Int64[], Int64[]], Symbolics.Equation[Differential(t
)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (1.2624545655444808 / (1 + t))*(u(t))
[2], (510.5729767825508(u(t))[3] - 510.5729767825508(u(t))[2])*(u(t))[2]), 
Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (536.5139606774583(u(t)
)[3] - 536.5139606774583(u(t))[2])*(u(t))[3], (536.5139606774583(u(t))[4] -
 536.5139606774583(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifel
se((u(t))[4] > 0, (339.8938320398733(u(t))[4] - 339.8938320398733(u(t))[3])
*(u(t))[4], (339.8938320398733(u(t))[5] - 339.8938320398733(u(t))[4])*(u(t)
)[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (215.96618521800
934(u(t))[5] - 215.96618521800934(u(t))[4])*(u(t))[5], (215.96618521800934(
u(t))[6] - 215.96618521800934(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[
6]) ~ -ifelse((u(t))[6] > 0, (137.8602738401593(u(t))[6] - 137.860273840159
3(u(t))[5])*(u(t))[6], (137.8602738401593(u(t))[7] - 137.8602738401593(u(t)
)[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (88.6
4069899746065(u(t))[7] - 88.64069899746065(u(t))[6])*(u(t))[7], (88.6406989
9746065(u(t))[8] - 88.64069899746065(u(t))[7])*(u(t))[7]), Differential(t)(
(u(t))[8]) ~ -ifelse((u(t))[8] > 0, (57.63537301586889(u(t))[8] - 57.635373
01586889(u(t))[7])*(u(t))[8], (57.63537301586889(u(t))[9] - 57.635373015868
89(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0
, (38.121532476653655(u(t))[9] - 38.121532476653655(u(t))[8])*(u(t))[9], (3
8.121532476653655(u(t))[10] - 38.121532476653655(u(t))[9])*(u(t))[9]), Diff
erential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.8680677500096(u(t))[1
0] - 25.8680677500096(u(t))[9])*(u(t))[10], (25.8680677500096(u(t))[11] - 2
5.8680677500096(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifel
se((u(t))[11] > 0, (18.218108062641644(u(t))[11] - 18.218108062641644(u(t))
[10])*(u(t))[11], (18.218108062641644(u(t))[12] - 18.218108062641644(u(t))[
11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, 
(25.868067750009544(u(t))[20] - 25.868067750009544(u(t))[19])*(u(t))[20], (
25.868067750009544(u(t))[21] - 25.868067750009544(u(t))[20])*(u(t))[20]), D
ifferential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (38.121532476653655(u(
t))[21] - 38.121532476653655(u(t))[20])*(u(t))[21], (38.121532476653655(u(t
))[22] - 38.121532476653655(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[
22]) ~ -ifelse((u(t))[22] > 0, (57.63537301586917(u(t))[22] - 57.6353730158
6917(u(t))[21])*(u(t))[22], (57.63537301586917(u(t))[23] - 57.6353730158691
7(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] 
> 0, (88.64069899745934(u(t))[23] - 88.64069899745934(u(t))[22])*(u(t))[23]
, (88.64069899745934(u(t))[24] - 88.64069899745934(u(t))[23])*(u(t))[23]), 
Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (137.8602738401593(u(
t))[24] - 137.8602738401593(u(t))[23])*(u(t))[24], (137.8602738401593(u(t))
[25] - 137.8602738401593(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]
) ~ -ifelse((u(t))[25] > 0, (215.96618521801062(u(t))[25] - 215.96618521801
062(u(t))[24])*(u(t))[25], (215.96618521801062(u(t))[26] - 215.966185218010
62(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26]
 > 0, (339.89383203987967(u(t))[26] - 339.89383203987967(u(t))[25])*(u(t))[
26], (339.89383203987967(u(t))[27] - 339.89383203987967(u(t))[26])*(u(t))[2
6]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (536.51396067745
83(u(t))[27] - 536.5139606774583(u(t))[26])*(u(t))[27], (536.5139606774583(
u(t))[28] - 536.5139606774583(u(t))[27])*(u(t))[27]), Differential(t)((u(t)
)[28]) ~ -ifelse((u(t))[28] > 0, (510.5729767825508(u(t))[28] - 510.5729767
825508(u(t))[27])*(u(t))[28], (510.5729767825508(u(t))[29] - 510.5729767825
508(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29
] > 0, (404.4287934927362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(t))[2
9], (1.0 / (1 + t))*(u(t))[29])])), Any[(u(t))[2], (u(t))[3], (u(t))[4], (u
(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]
  …  Differential(t)((u(t))[20]), Differential(t)((u(t))[21]), Differential
(t)((u(t))[22]), Differential(t)((u(t))[23]), Differential(t)((u(t))[24]), 
Differential(t)((u(t))[25]), Differential(t)((u(t))[26]), Differential(t)((
u(t))[27]), Differential(t)((u(t))[28]), Differential(t)((u(t))[29])], Mode
lingToolkit.SystemStructures.SystemStructure(ModelingToolkit.SystemStructur
es.DiffGraph(Union{Nothing, Int64}[29, 30, 31, 32, 33, 34, 35, 36, 37, 38  
…  nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, 
nothing, nothing], Union{Nothing, Int64}[nothing, nothing, nothing, nothing
, nothing, nothing, nothing, nothing, nothing, nothing  …  19, 20, 21, 22, 
23, 24, 25, 26, 27, 28]), ModelingToolkit.SystemStructures.DiffGraph(Union{
Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, nothi
ng, nothing, nothing, nothing  …  nothing, nothing, nothing, nothing, nothi
ng, nothing, nothing, nothing, nothing, nothing], Union{Nothing, Int64}[not
hing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothin
g, nothing  …  nothing, nothing, nothing, nothing, nothing, nothing, nothin
g, nothing, nothing, nothing]), BipartiteGraph with (28, 56) (𝑠,𝑑)-vertices
   #  src      dst
  1   [1, 29]  [1]
  2   [2, 30]  [2]
  3   [3, 31]  [3]
  4   [4, 32]  [4]
  5   [5, 33]  [5]
  6   [6, 34]  [6]
  7   [7, 35]  [7]
  8   [8, 36]  [8]
  9   [9, 37]  [9]
  ⋮            
 48   ⋅        [20]
 49   ⋅        [21]
 50   ⋅        [22]
 51   ⋅        [23]
 52   ⋅        [24]
 53   ⋅        [25]
 54   ⋅        [26]
 55   ⋅        [27]
 56   ⋅        [28], BipartiteGraph with (30, 58) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    ∅
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    ∅
 55   ⋅    ∅
 56   ⋅    [30]
 57   ⋅    [29]
 58   ⋅    [30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[30] ~ 0.002472623156634768 / (1 + t) + (u(t))[29], (u(t))[1] ~ -0.00
2472623156634768 / (1 + t) + (u(t))[2]], [Int64[], Int64[]], Symbolics.Equa
tion[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (1.262454565544480
8 / (1 + t))*(u(t))[2], (510.5729767825508(u(t))[3] - 510.5729767825508(u(t
))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (536
.5139606774583(u(t))[3] - 536.5139606774583(u(t))[2])*(u(t))[3], (536.51396
06774583(u(t))[4] - 536.5139606774583(u(t))[3])*(u(t))[3]), Differential(t)
((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (339.8938320398733(u(t))[4] - 339.8938
320398733(u(t))[3])*(u(t))[4], (339.8938320398733(u(t))[5] - 339.8938320398
733(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 
0, (215.96618521800934(u(t))[5] - 215.96618521800934(u(t))[4])*(u(t))[5], (
215.96618521800934(u(t))[6] - 215.96618521800934(u(t))[5])*(u(t))[5]), Diff
erential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (137.8602738401593(u(t))[6]
 - 137.8602738401593(u(t))[5])*(u(t))[6], (137.8602738401593(u(t))[7] - 137
.8602738401593(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((
u(t))[7] > 0, (88.64069899746065(u(t))[7] - 88.64069899746065(u(t))[6])*(u(
t))[7], (88.64069899746065(u(t))[8] - 88.64069899746065(u(t))[7])*(u(t))[7]
), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (57.63537301586889(u
(t))[8] - 57.63537301586889(u(t))[7])*(u(t))[8], (57.63537301586889(u(t))[9
] - 57.63537301586889(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -i
felse((u(t))[9] > 0, (38.121532476653655(u(t))[9] - 38.121532476653655(u(t)
)[8])*(u(t))[9], (38.121532476653655(u(t))[10] - 38.121532476653655(u(t))[9
])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.86
80677500096(u(t))[10] - 25.8680677500096(u(t))[9])*(u(t))[10], (25.86806775
00096(u(t))[11] - 25.8680677500096(u(t))[10])*(u(t))[10]), Differential(t)(
(u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.218108062641644(u(t))[11] - 18.21
8108062641644(u(t))[10])*(u(t))[11], (18.218108062641644(u(t))[12] - 18.218
108062641644(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifel
se((u(t))[20] > 0, (25.868067750009544(u(t))[20] - 25.868067750009544(u(t))
[19])*(u(t))[20], (25.868067750009544(u(t))[21] - 25.868067750009544(u(t))[
20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (38
.121532476653655(u(t))[21] - 38.121532476653655(u(t))[20])*(u(t))[21], (38.
121532476653655(u(t))[22] - 38.121532476653655(u(t))[21])*(u(t))[21]), Diff
erential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (57.63537301586917(u(t))[
22] - 57.63537301586917(u(t))[21])*(u(t))[22], (57.63537301586917(u(t))[23]
 - 57.63537301586917(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ 
-ifelse((u(t))[23] > 0, (88.64069899745934(u(t))[23] - 88.64069899745934(u(
t))[22])*(u(t))[23], (88.64069899745934(u(t))[24] - 88.64069899745934(u(t))
[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (1
37.8602738401593(u(t))[24] - 137.8602738401593(u(t))[23])*(u(t))[24], (137.
8602738401593(u(t))[25] - 137.8602738401593(u(t))[24])*(u(t))[24]), Differe
ntial(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (215.96618521801062(u(t))[25
] - 215.96618521801062(u(t))[24])*(u(t))[25], (215.96618521801062(u(t))[26]
 - 215.96618521801062(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~
 -ifelse((u(t))[26] > 0, (339.89383203987967(u(t))[26] - 339.89383203987967
(u(t))[25])*(u(t))[26], (339.89383203987967(u(t))[27] - 339.89383203987967(
u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 
0, (536.5139606774583(u(t))[27] - 536.5139606774583(u(t))[26])*(u(t))[27], 
(536.5139606774583(u(t))[28] - 536.5139606774583(u(t))[27])*(u(t))[27]), Di
fferential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (510.5729767825508(u(t)
)[28] - 510.5729767825508(u(t))[27])*(u(t))[28], (510.5729767825508(u(t))[2
9] - 510.5729767825508(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) 
~ -ifelse((u(t))[29] > 0, (404.4287934927362(u(t))[29] - 404.4287934927362(
u(t))[28])*(u(t))[29], (1.0 / (1 + t))*(u(t))[29])])), Dict{Any, Any}()), n
othing, ModelingToolkit.ODESystem(Symbolics.Equation[Differential(t)((u(t))
[2]) ~ -ifelse((u(t))[2] > 0, (510.5729767825508(u(t))[2] - 510.57297678255
08(u(t))[1])*(u(t))[2], (510.5729767825508(u(t))[3] - 510.5729767825508(u(t
))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (536
.5139606774583(u(t))[3] - 536.5139606774583(u(t))[2])*(u(t))[3], (536.51396
06774583(u(t))[4] - 536.5139606774583(u(t))[3])*(u(t))[3]), Differential(t)
((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (339.8938320398733(u(t))[4] - 339.8938
320398733(u(t))[3])*(u(t))[4], (339.8938320398733(u(t))[5] - 339.8938320398
733(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 
0, (215.96618521800934(u(t))[5] - 215.96618521800934(u(t))[4])*(u(t))[5], (
215.96618521800934(u(t))[6] - 215.96618521800934(u(t))[5])*(u(t))[5]), Diff
erential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (137.8602738401593(u(t))[6]
 - 137.8602738401593(u(t))[5])*(u(t))[6], (137.8602738401593(u(t))[7] - 137
.8602738401593(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((
u(t))[7] > 0, (88.64069899746065(u(t))[7] - 88.64069899746065(u(t))[6])*(u(
t))[7], (88.64069899746065(u(t))[8] - 88.64069899746065(u(t))[7])*(u(t))[7]
), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (57.63537301586889(u
(t))[8] - 57.63537301586889(u(t))[7])*(u(t))[8], (57.63537301586889(u(t))[9
] - 57.63537301586889(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -i
felse((u(t))[9] > 0, (38.121532476653655(u(t))[9] - 38.121532476653655(u(t)
)[8])*(u(t))[9], (38.121532476653655(u(t))[10] - 38.121532476653655(u(t))[9
])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.86
80677500096(u(t))[10] - 25.8680677500096(u(t))[9])*(u(t))[10], (25.86806775
00096(u(t))[11] - 25.8680677500096(u(t))[10])*(u(t))[10]), Differential(t)(
(u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.218108062641644(u(t))[11] - 18.21
8108062641644(u(t))[10])*(u(t))[11], (18.218108062641644(u(t))[12] - 18.218
108062641644(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifel
se((u(t))[20] > 0, (25.868067750009544(u(t))[20] - 25.868067750009544(u(t))
[19])*(u(t))[20], (25.868067750009544(u(t))[21] - 25.868067750009544(u(t))[
20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (38
.121532476653655(u(t))[21] - 38.121532476653655(u(t))[20])*(u(t))[21], (38.
121532476653655(u(t))[22] - 38.121532476653655(u(t))[21])*(u(t))[21]), Diff
erential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (57.63537301586917(u(t))[
22] - 57.63537301586917(u(t))[21])*(u(t))[22], (57.63537301586917(u(t))[23]
 - 57.63537301586917(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ 
-ifelse((u(t))[23] > 0, (88.64069899745934(u(t))[23] - 88.64069899745934(u(
t))[22])*(u(t))[23], (88.64069899745934(u(t))[24] - 88.64069899745934(u(t))
[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (1
37.8602738401593(u(t))[24] - 137.8602738401593(u(t))[23])*(u(t))[24], (137.
8602738401593(u(t))[25] - 137.8602738401593(u(t))[24])*(u(t))[24]), Differe
ntial(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (215.96618521801062(u(t))[25
] - 215.96618521801062(u(t))[24])*(u(t))[25], (215.96618521801062(u(t))[26]
 - 215.96618521801062(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~
 -ifelse((u(t))[26] > 0, (339.89383203987967(u(t))[26] - 339.89383203987967
(u(t))[25])*(u(t))[26], (339.89383203987967(u(t))[27] - 339.89383203987967(
u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 
0, (536.5139606774583(u(t))[27] - 536.5139606774583(u(t))[26])*(u(t))[27], 
(536.5139606774583(u(t))[28] - 536.5139606774583(u(t))[27])*(u(t))[27]), Di
fferential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (510.5729767825508(u(t)
)[28] - 510.5729767825508(u(t))[27])*(u(t))[28], (510.5729767825508(u(t))[2
9] - 510.5729767825508(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) 
~ -ifelse((u(t))[29] > 0, (404.4287934927362(u(t))[29] - 404.4287934927362(
u(t))[28])*(u(t))[29], (404.4287934927362(u(t))[30] - 404.4287934927362(u(t
))[29])*(u(t))[29])], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(t)
)[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(
t))[10], (u(t))[11]  …  (u(t))[20], (u(t))[21], (u(t))[22], (u(t))[23], (u(
t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29]], Any[]
, Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[30] ~ 0.0024
72623156634768 / (1 + t) + (u(t))[29], (u(t))[1] ~ -0.002472623156634768 / 
(1 + t) + (u(t))[2]], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[])
, Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any
}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}
(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(
Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys2, ModelingToolkit.ODESystem[],
 Dict{Any, Any}((u(t))[17] => 0.6645238567001591, (u(t))[18] => 0.757699931
6909356, (u(t))[8] => 0.0311664502774546, (u(t))[10] => 0.07474880024081432
, (u(t))[27] => 0.9949412201485321, (u(t))[28] => 0.9968051045453842, (u(t)
)[2] => 0.001236311578317384, (u(t))[24] => 0.9801150492065314, (u(t))[30] 
=> 1.0012363115783174, (u(t))[21] => 0.9252511997591857…), nothing, nothing
, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.Symbo
licContinuousCallback(Symbolics.Equation[], Symbolics.Equation[])], Modelin
gToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}(),
 MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}, MethodOf
Lines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.Scal
arizedDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{Any}, Metho
dOfLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1, Method
OfLines.EdgeAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUt
ils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUtils.
Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Float64}}(x =>
 (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType
{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{
DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tupl
e, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{Data
Type, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.Immut
ableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.Immu
tableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u
(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], 
(u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (
u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30]]), Di
ct{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Vector{Float
64}}(x => [0.0, 0.002472623156634768, 0.003917167752596873, 0.0062003919503
38835, 0.009801358083433409, 0.015461100972823438, 0.024308800614114, 0.038
0240999407952, 0.059009712490737665, 0.09048788799089097  …  0.909512112009
109, 0.9409902875092624, 0.9619759000592047, 0.975691199385886, 0.984538899
0271766, 0.9901986419165666, 0.9937996080496612, 0.9960828322474031, 0.9975
273768433652, 1.0]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataTy
pe, Any}}, Vector{Float64}}(x => [-0.001236311578317384, 0.0012363115783173
84, 0.0031948954546158204, 0.005058779851467854, 0.008000875016886122, 0.01
2631229528128424, 0.01988495079346872, 0.0311664502774546, 0.04851690621576
643, 0.07474880024081432  …  0.9252511997591857, 0.9514830937842336, 0.9688
335497225453, 0.9801150492065314, 0.9873687704718717, 0.9919991249831139, 0
.9949412201485321, 0.9968051045453842, 0.9987636884216826, 1.00123631157831
74]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Vect
or{Float64}}(x => [0.002472623156634768]), Dict{SymbolicUtils.Term{Real, Ba
se.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int6
4}}}}(u(t, x) => CartesianIndices((29,))), Dict{SymbolicUtils.Term{Real, Ba
se.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int6
4}}}}(u(t, x) => CartesianIndices((30,)))), MethodOfLines.MOLFiniteDifferen
ce{MethodOfLines.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscretization}(D
ict{Symbolics.Num, Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.0039
17167752596873, 0.006200391950338835, 0.009801358083433409, 0.0154611009728
23438, 0.024308800614114, 0.0380240999407952, 0.059009712490737665, 0.09048
788799089097  …  0.909512112009109, 0.9409902875092624, 0.9619759000592047,
 0.975691199385886, 0.9845388990271766, 0.9901986419165666, 0.9937996080496
612, 0.9960828322474031, 0.9975273768433652, 1.0]), t, 2, MethodOfLines.Upw
indScheme(1), MethodOfLines.EdgeAlignedGrid(), true, false, MethodOfLines.S
calarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{
(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equation[Differential
(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equation[u(
0, x) ~ x, Differential(x)(u(t, 0.0)) ~ 1 / (1 + t), Differential(x)(u(t, 1
.0)) ~ 1 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(
t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x
], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), no
thing, Any[], :pdesys2, nothing), false, Base.RefValue{Any}(nothing)), Mode
lingToolkit.SystemStructures.TearingState{ModelingToolkit.ODESystem}(Modeli
ngToolkit.ODESystem(Symbolics.Equation[Differential(t)((u(t))[2]) ~ -ifelse
((u(t))[2] > 0, (510.5729767825508(u(t))[2] - 510.5729767825508(u(t))[1])*(
u(t))[2], (510.5729767825508(u(t))[3] - 510.5729767825508(u(t))[2])*(u(t))[
2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (536.5139606774583
(u(t))[3] - 536.5139606774583(u(t))[2])*(u(t))[3], (536.5139606774583(u(t))
[4] - 536.5139606774583(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ 
-ifelse((u(t))[4] > 0, (339.8938320398733(u(t))[4] - 339.8938320398733(u(t)
)[3])*(u(t))[4], (339.8938320398733(u(t))[5] - 339.8938320398733(u(t))[4])*
(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (215.966185
21800934(u(t))[5] - 215.96618521800934(u(t))[4])*(u(t))[5], (215.9661852180
0934(u(t))[6] - 215.96618521800934(u(t))[5])*(u(t))[5]), Differential(t)((u
(t))[6]) ~ -ifelse((u(t))[6] > 0, (137.8602738401593(u(t))[6] - 137.8602738
401593(u(t))[5])*(u(t))[6], (137.8602738401593(u(t))[7] - 137.8602738401593
(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, 
(88.64069899746065(u(t))[7] - 88.64069899746065(u(t))[6])*(u(t))[7], (88.64
069899746065(u(t))[8] - 88.64069899746065(u(t))[7])*(u(t))[7]), Differentia
l(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (57.63537301586889(u(t))[8] - 57.6
3537301586889(u(t))[7])*(u(t))[8], (57.63537301586889(u(t))[9] - 57.6353730
1586889(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9
] > 0, (38.121532476653655(u(t))[9] - 38.121532476653655(u(t))[8])*(u(t))[9
], (38.121532476653655(u(t))[10] - 38.121532476653655(u(t))[9])*(u(t))[9]),
 Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.8680677500096(u(
t))[10] - 25.8680677500096(u(t))[9])*(u(t))[10], (25.8680677500096(u(t))[11
] - 25.8680677500096(u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ 
-ifelse((u(t))[11] > 0, (18.218108062641644(u(t))[11] - 18.218108062641644(
u(t))[10])*(u(t))[11], (18.218108062641644(u(t))[12] - 18.218108062641644(u
(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] 
> 0, (25.868067750009544(u(t))[20] - 25.868067750009544(u(t))[19])*(u(t))[2
0], (25.868067750009544(u(t))[21] - 25.868067750009544(u(t))[20])*(u(t))[20
]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (38.1215324766536
55(u(t))[21] - 38.121532476653655(u(t))[20])*(u(t))[21], (38.12153247665365
5(u(t))[22] - 38.121532476653655(u(t))[21])*(u(t))[21]), Differential(t)((u
(t))[22]) ~ -ifelse((u(t))[22] > 0, (57.63537301586917(u(t))[22] - 57.63537
301586917(u(t))[21])*(u(t))[22], (57.63537301586917(u(t))[23] - 57.63537301
586917(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))
[23] > 0, (88.64069899745934(u(t))[23] - 88.64069899745934(u(t))[22])*(u(t)
)[23], (88.64069899745934(u(t))[24] - 88.64069899745934(u(t))[23])*(u(t))[2
3]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (137.86027384015
93(u(t))[24] - 137.8602738401593(u(t))[23])*(u(t))[24], (137.8602738401593(
u(t))[25] - 137.8602738401593(u(t))[24])*(u(t))[24]), Differential(t)((u(t)
)[25]) ~ -ifelse((u(t))[25] > 0, (215.96618521801062(u(t))[25] - 215.966185
21801062(u(t))[24])*(u(t))[25], (215.96618521801062(u(t))[26] - 215.9661852
1801062(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t)
)[26] > 0, (339.89383203987967(u(t))[26] - 339.89383203987967(u(t))[25])*(u
(t))[26], (339.89383203987967(u(t))[27] - 339.89383203987967(u(t))[26])*(u(
t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (536.513960
6774583(u(t))[27] - 536.5139606774583(u(t))[26])*(u(t))[27], (536.513960677
4583(u(t))[28] - 536.5139606774583(u(t))[27])*(u(t))[27]), Differential(t)(
(u(t))[28]) ~ -ifelse((u(t))[28] > 0, (510.5729767825508(u(t))[28] - 510.57
29767825508(u(t))[27])*(u(t))[28], (510.5729767825508(u(t))[29] - 510.57297
67825508(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t
))[29] > 0, (404.4287934927362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(
t))[29], (404.4287934927362(u(t))[30] - 404.4287934927362(u(t))[29])*(u(t))
[29])], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[2], (u(t))[3], (u(t))[4
], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t)
)[11]  …  (u(t))[20], (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t)
)[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29]], Any[], Dict{Any, An
y}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[30] ~ 0.002472623156634768
 / (1 + t) + (u(t))[29], (u(t))[1] ~ -0.002472623156634768 / (1 + t) + (u(t
))[2]], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefValu
e{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbo
lics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbol
ics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symboli
cs.Num}(undef, 0, 0)), :pdesys2, ModelingToolkit.ODESystem[], Dict{Any, Any
}((u(t))[17] => 0.6645238567001591, (u(t))[18] => 0.7576999316909356, (u(t)
)[8] => 0.0311664502774546, (u(t))[10] => 0.07474880024081432, (u(t))[27] =
> 0.9949412201485321, (u(t))[28] => 0.9968051045453842, (u(t))[2] => 0.0012
36311578317384, (u(t))[24] => 0.9801150492065314, (u(t))[30] => 1.001236311
5783174, (u(t))[21] => 0.9252511997591857…), nothing, nothing, nothing, Mod
elingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicContinuousC
allback(Symbolics.Equation[], Symbolics.Equation[])], ModelingToolkit.Symbo
licDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}(), MethodOfLines
.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}, MethodOfLines.MOLFinit
eDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscreti
zation}, ModelingToolkit.PDESystem, Base.RefValue{Any}, MethodOfLines.Scala
rizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAl
ignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, 
Base.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base
.ImmutableDict{DataType, Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t
 => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real},
 Nothing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}
}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Noth
ing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, I
nt64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.ImmutableDict{DataT
ype, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{Data
Type, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t)
)[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(
t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(
t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30]]), Dict{SymbolicUti
ls.Sym{Real, Base.ImmutableDict{DataType, Any}}, Vector{Float64}}(x => [0.0
, 0.002472623156634768, 0.003917167752596873, 0.006200391950338835, 0.00980
1358083433409, 0.015461100972823438, 0.024308800614114, 0.0380240999407952,
 0.059009712490737665, 0.09048788799089097  …  0.909512112009109, 0.9409902
875092624, 0.9619759000592047, 0.975691199385886, 0.9845388990271766, 0.990
1986419165666, 0.9937996080496612, 0.9960828322474031, 0.9975273768433652, 
1.0]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Vec
tor{Float64}}(x => [-0.001236311578317384, 0.001236311578317384, 0.00319489
54546158204, 0.005058779851467854, 0.008000875016886122, 0.0126312295281284
24, 0.01988495079346872, 0.0311664502774546, 0.04851690621576643, 0.0747488
0024081432  …  0.9252511997591857, 0.9514830937842336, 0.9688335497225453, 
0.9801150492065314, 0.9873687704718717, 0.9919991249831139, 0.9949412201485
321, 0.9968051045453842, 0.9987636884216826, 1.0012363115783174]), Dict{Sym
bolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Vector{Float64}}(x
 => [0.002472623156634768]), Dict{SymbolicUtils.Term{Real, Base.ImmutableDi
ct{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) 
=> CartesianIndices((29,))), Dict{SymbolicUtils.Term{Real, Base.ImmutableDi
ct{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) 
=> CartesianIndices((30,)))), MethodOfLines.MOLFiniteDifference{MethodOfLin
es.EdgeAlignedGrid, MethodOfLines.ScalarizedDiscretization}(Dict{Symbolics.
Num, Vector{Float64}}(x => [0.0, 0.002472623156634768, 0.003917167752596873
, 0.006200391950338835, 0.009801358083433409, 0.015461100972823438, 0.02430
8800614114, 0.0380240999407952, 0.059009712490737665, 0.09048788799089097  
…  0.909512112009109, 0.9409902875092624, 0.9619759000592047, 0.97569119938
5886, 0.9845388990271766, 0.9901986419165666, 0.9937996080496612, 0.9960828
322474031, 0.9975273768433652, 1.0]), t, 2, MethodOfLines.UpwindScheme(1), 
MethodOfLines.EdgeAlignedGrid(), true, false, MethodOfLines.ScalarizedDiscr
etization(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(
)), ModelingToolkit.PDESystem(Symbolics.Equation[Differential(x)(u(t, x))*u
(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, Dif
ferential(x)(u(t, 0.0)) ~ 1 / (1 + t), Differential(x)(u(t, 1.0)) ~ 1 / (1 
+ t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0),
 Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.N
um[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[], 
:pdesys2, nothing), false, Base.RefValue{Any}(nothing)), nothing, ModelingT
oolkit.Substitutions(Symbolics.Equation[(u(t))[30] ~ 0.002472623156634768 /
 (1 + t) + (u(t))[29], (u(t))[1] ~ -0.002472623156634768 / (1 + t) + (u(t))
[2]], [Int64[], Int64[]], Symbolics.Equation[Differential(t)((u(t))[2]) ~ -
ifelse((u(t))[2] > 0, (1.2624545655444808 / (1 + t))*(u(t))[2], (510.572976
7825508(u(t))[3] - 510.5729767825508(u(t))[2])*(u(t))[2]), Differential(t)(
(u(t))[3]) ~ -ifelse((u(t))[3] > 0, (536.5139606774583(u(t))[3] - 536.51396
06774583(u(t))[2])*(u(t))[3], (536.5139606774583(u(t))[4] - 536.51396067745
83(u(t))[3])*(u(t))[3]), Differential(t)((u(t))[4]) ~ -ifelse((u(t))[4] > 0
, (339.8938320398733(u(t))[4] - 339.8938320398733(u(t))[3])*(u(t))[4], (339
.8938320398733(u(t))[5] - 339.8938320398733(u(t))[4])*(u(t))[4]), Different
ial(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 0, (215.96618521800934(u(t))[5] - 2
15.96618521800934(u(t))[4])*(u(t))[5], (215.96618521800934(u(t))[6] - 215.9
6618521800934(u(t))[5])*(u(t))[5]), Differential(t)((u(t))[6]) ~ -ifelse((u
(t))[6] > 0, (137.8602738401593(u(t))[6] - 137.8602738401593(u(t))[5])*(u(t
))[6], (137.8602738401593(u(t))[7] - 137.8602738401593(u(t))[6])*(u(t))[6])
, Differential(t)((u(t))[7]) ~ -ifelse((u(t))[7] > 0, (88.64069899746065(u(
t))[7] - 88.64069899746065(u(t))[6])*(u(t))[7], (88.64069899746065(u(t))[8]
 - 88.64069899746065(u(t))[7])*(u(t))[7]), Differential(t)((u(t))[8]) ~ -if
else((u(t))[8] > 0, (57.63537301586889(u(t))[8] - 57.63537301586889(u(t))[7
])*(u(t))[8], (57.63537301586889(u(t))[9] - 57.63537301586889(u(t))[8])*(u(
t))[8]), Differential(t)((u(t))[9]) ~ -ifelse((u(t))[9] > 0, (38.1215324766
53655(u(t))[9] - 38.121532476653655(u(t))[8])*(u(t))[9], (38.12153247665365
5(u(t))[10] - 38.121532476653655(u(t))[9])*(u(t))[9]), Differential(t)((u(t
))[10]) ~ -ifelse((u(t))[10] > 0, (25.8680677500096(u(t))[10] - 25.86806775
00096(u(t))[9])*(u(t))[10], (25.8680677500096(u(t))[11] - 25.8680677500096(
u(t))[10])*(u(t))[10]), Differential(t)((u(t))[11]) ~ -ifelse((u(t))[11] > 
0, (18.218108062641644(u(t))[11] - 18.218108062641644(u(t))[10])*(u(t))[11]
, (18.218108062641644(u(t))[12] - 18.218108062641644(u(t))[11])*(u(t))[11])
  …  Differential(t)((u(t))[20]) ~ -ifelse((u(t))[20] > 0, (25.868067750009
544(u(t))[20] - 25.868067750009544(u(t))[19])*(u(t))[20], (25.8680677500095
44(u(t))[21] - 25.868067750009544(u(t))[20])*(u(t))[20]), Differential(t)((
u(t))[21]) ~ -ifelse((u(t))[21] > 0, (38.121532476653655(u(t))[21] - 38.121
532476653655(u(t))[20])*(u(t))[21], (38.121532476653655(u(t))[22] - 38.1215
32476653655(u(t))[21])*(u(t))[21]), Differential(t)((u(t))[22]) ~ -ifelse((
u(t))[22] > 0, (57.63537301586917(u(t))[22] - 57.63537301586917(u(t))[21])*
(u(t))[22], (57.63537301586917(u(t))[23] - 57.63537301586917(u(t))[22])*(u(
t))[22]), Differential(t)((u(t))[23]) ~ -ifelse((u(t))[23] > 0, (88.6406989
9745934(u(t))[23] - 88.64069899745934(u(t))[22])*(u(t))[23], (88.6406989974
5934(u(t))[24] - 88.64069899745934(u(t))[23])*(u(t))[23]), Differential(t)(
(u(t))[24]) ~ -ifelse((u(t))[24] > 0, (137.8602738401593(u(t))[24] - 137.86
02738401593(u(t))[23])*(u(t))[24], (137.8602738401593(u(t))[25] - 137.86027
38401593(u(t))[24])*(u(t))[24]), Differential(t)((u(t))[25]) ~ -ifelse((u(t
))[25] > 0, (215.96618521801062(u(t))[25] - 215.96618521801062(u(t))[24])*(
u(t))[25], (215.96618521801062(u(t))[26] - 215.96618521801062(u(t))[25])*(u
(t))[25]), Differential(t)((u(t))[26]) ~ -ifelse((u(t))[26] > 0, (339.89383
203987967(u(t))[26] - 339.89383203987967(u(t))[25])*(u(t))[26], (339.893832
03987967(u(t))[27] - 339.89383203987967(u(t))[26])*(u(t))[26]), Differentia
l(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 0, (536.5139606774583(u(t))[27] - 5
36.5139606774583(u(t))[26])*(u(t))[27], (536.5139606774583(u(t))[28] - 536.
5139606774583(u(t))[27])*(u(t))[27]), Differential(t)((u(t))[28]) ~ -ifelse
((u(t))[28] > 0, (510.5729767825508(u(t))[28] - 510.5729767825508(u(t))[27]
)*(u(t))[28], (510.5729767825508(u(t))[29] - 510.5729767825508(u(t))[28])*(
u(t))[28]), Differential(t)((u(t))[29]) ~ -ifelse((u(t))[29] > 0, (404.4287
934927362(u(t))[29] - 404.4287934927362(u(t))[28])*(u(t))[29], (1.0 / (1 + 
t))*(u(t))[29])])), Any[(u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[
6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11]  …  Differentia
l(t)((u(t))[20]), Differential(t)((u(t))[21]), Differential(t)((u(t))[22]),
 Differential(t)((u(t))[23]), Differential(t)((u(t))[24]), Differential(t)(
(u(t))[25]), Differential(t)((u(t))[26]), Differential(t)((u(t))[27]), Diff
erential(t)((u(t))[28]), Differential(t)((u(t))[29])], ModelingToolkit.Syst
emStructures.SystemStructure(ModelingToolkit.SystemStructures.DiffGraph(Uni
on{Nothing, Int64}[29, 30, 31, 32, 33, 34, 35, 36, 37, 38  …  nothing, noth
ing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing
], Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, nothi
ng, nothing, nothing, nothing, nothing  …  19, 20, 21, 22, 23, 24, 25, 26, 
27, 28]), ModelingToolkit.SystemStructures.DiffGraph(Union{Nothing, Int64}[
nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, not
hing, nothing  …  nothing, nothing, nothing, nothing, nothing, nothing, not
hing, nothing, nothing, nothing], Union{Nothing, Int64}[nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing, nothing, nothing  …  n
othing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, noth
ing, nothing]), BipartiteGraph with (28, 56) (𝑠,𝑑)-vertices
   #  src      dst
  1   [1, 29]  [1]
  2   [2, 30]  [2]
  3   [3, 31]  [3]
  4   [4, 32]  [4]
  5   [5, 33]  [5]
  6   [6, 34]  [6]
  7   [7, 35]  [7]
  8   [8, 36]  [8]
  9   [9, 37]  [9]
  ⋮            
 48   ⋅        [20]
 49   ⋅        [21]
 50   ⋅        [22]
 51   ⋅        [23]
 52   ⋅        [24]
 53   ⋅        [25]
 54   ⋅        [26]
 55   ⋅        [27]
 56   ⋅        [28], BipartiteGraph with (30, 58) (𝑠,𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    ∅
 52   ⋅    ∅
 53   ⋅    ∅
 54   ⋅    ∅
 55   ⋅    ∅
 56   ⋅    [30]
 57   ⋅    [29]
 58   ⋅    [30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equation[
(u(t))[30] ~ 0.002472623156634768 / (1 + t) + (u(t))[29], (u(t))[1] ~ -0.00
2472623156634768 / (1 + t) + (u(t))[2]], [Int64[], Int64[]], Symbolics.Equa
tion[Differential(t)((u(t))[2]) ~ -ifelse((u(t))[2] > 0, (1.262454565544480
8 / (1 + t))*(u(t))[2], (510.5729767825508(u(t))[3] - 510.5729767825508(u(t
))[2])*(u(t))[2]), Differential(t)((u(t))[3]) ~ -ifelse((u(t))[3] > 0, (536
.5139606774583(u(t))[3] - 536.5139606774583(u(t))[2])*(u(t))[3], (536.51396
06774583(u(t))[4] - 536.5139606774583(u(t))[3])*(u(t))[3]), Differential(t)
((u(t))[4]) ~ -ifelse((u(t))[4] > 0, (339.8938320398733(u(t))[4] - 339.8938
320398733(u(t))[3])*(u(t))[4], (339.8938320398733(u(t))[5] - 339.8938320398
733(u(t))[4])*(u(t))[4]), Differential(t)((u(t))[5]) ~ -ifelse((u(t))[5] > 
0, (215.96618521800934(u(t))[5] - 215.96618521800934(u(t))[4])*(u(t))[5], (
215.96618521800934(u(t))[6] - 215.96618521800934(u(t))[5])*(u(t))[5]), Diff
erential(t)((u(t))[6]) ~ -ifelse((u(t))[6] > 0, (137.8602738401593(u(t))[6]
 - 137.8602738401593(u(t))[5])*(u(t))[6], (137.8602738401593(u(t))[7] - 137
.8602738401593(u(t))[6])*(u(t))[6]), Differential(t)((u(t))[7]) ~ -ifelse((
u(t))[7] > 0, (88.64069899746065(u(t))[7] - 88.64069899746065(u(t))[6])*(u(
t))[7], (88.64069899746065(u(t))[8] - 88.64069899746065(u(t))[7])*(u(t))[7]
), Differential(t)((u(t))[8]) ~ -ifelse((u(t))[8] > 0, (57.63537301586889(u
(t))[8] - 57.63537301586889(u(t))[7])*(u(t))[8], (57.63537301586889(u(t))[9
] - 57.63537301586889(u(t))[8])*(u(t))[8]), Differential(t)((u(t))[9]) ~ -i
felse((u(t))[9] > 0, (38.121532476653655(u(t))[9] - 38.121532476653655(u(t)
)[8])*(u(t))[9], (38.121532476653655(u(t))[10] - 38.121532476653655(u(t))[9
])*(u(t))[9]), Differential(t)((u(t))[10]) ~ -ifelse((u(t))[10] > 0, (25.86
80677500096(u(t))[10] - 25.8680677500096(u(t))[9])*(u(t))[10], (25.86806775
00096(u(t))[11] - 25.8680677500096(u(t))[10])*(u(t))[10]), Differential(t)(
(u(t))[11]) ~ -ifelse((u(t))[11] > 0, (18.218108062641644(u(t))[11] - 18.21
8108062641644(u(t))[10])*(u(t))[11], (18.218108062641644(u(t))[12] - 18.218
108062641644(u(t))[11])*(u(t))[11])  …  Differential(t)((u(t))[20]) ~ -ifel
se((u(t))[20] > 0, (25.868067750009544(u(t))[20] - 25.868067750009544(u(t))
[19])*(u(t))[20], (25.868067750009544(u(t))[21] - 25.868067750009544(u(t))[
20])*(u(t))[20]), Differential(t)((u(t))[21]) ~ -ifelse((u(t))[21] > 0, (38
.121532476653655(u(t))[21] - 38.121532476653655(u(t))[20])*(u(t))[21], (38.
121532476653655(u(t))[22] - 38.121532476653655(u(t))[21])*(u(t))[21]), Diff
erential(t)((u(t))[22]) ~ -ifelse((u(t))[22] > 0, (57.63537301586917(u(t))[
22] - 57.63537301586917(u(t))[21])*(u(t))[22], (57.63537301586917(u(t))[23]
 - 57.63537301586917(u(t))[22])*(u(t))[22]), Differential(t)((u(t))[23]) ~ 
-ifelse((u(t))[23] > 0, (88.64069899745934(u(t))[23] - 88.64069899745934(u(
t))[22])*(u(t))[23], (88.64069899745934(u(t))[24] - 88.64069899745934(u(t))
[23])*(u(t))[23]), Differential(t)((u(t))[24]) ~ -ifelse((u(t))[24] > 0, (1
37.8602738401593(u(t))[24] - 137.8602738401593(u(t))[23])*(u(t))[24], (137.
8602738401593(u(t))[25] - 137.8602738401593(u(t))[24])*(u(t))[24]), Differe
ntial(t)((u(t))[25]) ~ -ifelse((u(t))[25] > 0, (215.96618521801062(u(t))[25
] - 215.96618521801062(u(t))[24])*(u(t))[25], (215.96618521801062(u(t))[26]
 - 215.96618521801062(u(t))[25])*(u(t))[25]), Differential(t)((u(t))[26]) ~
 -ifelse((u(t))[26] > 0, (339.89383203987967(u(t))[26] - 339.89383203987967
(u(t))[25])*(u(t))[26], (339.89383203987967(u(t))[27] - 339.89383203987967(
u(t))[26])*(u(t))[26]), Differential(t)((u(t))[27]) ~ -ifelse((u(t))[27] > 
0, (536.5139606774583(u(t))[27] - 536.5139606774583(u(t))[26])*(u(t))[27], 
(536.5139606774583(u(t))[28] - 536.5139606774583(u(t))[27])*(u(t))[27]), Di
fferential(t)((u(t))[28]) ~ -ifelse((u(t))[28] > 0, (510.5729767825508(u(t)
)[28] - 510.5729767825508(u(t))[27])*(u(t))[28], (510.5729767825508(u(t))[2
9] - 510.5729767825508(u(t))[28])*(u(t))[28]), Differential(t)((u(t))[29]) 
~ -ifelse((u(t))[29] > 0, (404.4287934927362(u(t))[29] - 404.4287934927362(
u(t))[28])*(u(t))[29], (1.0 / (1 + t))*(u(t))[29])]))), [0.0012363115783173
84, 0.0031948954546158204, 0.005058779851467854, 0.008000875016886122, 0.01
2631229528128424, 0.01988495079346872, 0.0311664502774546, 0.04851690621576
643, 0.07474880024081432, 0.11340650013800238  …  0.8865934998619975, 0.925
2511997591857, 0.9514830937842336, 0.9688335497225453, 0.9801150492065314, 
0.9873687704718717, 0.9919991249831139, 0.9949412201485321, 0.9968051045453
842, 0.9987636884216826], (0.0, 20.0), SciMLBase.NullParameters(), Base.Pai
rs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.Standard
ODEProblem())
 SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, SciML
Base.NullParameters, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, 
ModelingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0xb81214c7, 0x658d6d58, 0xbe8eaa4e, 0x6cae405c, 0xc
44acec5)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋a
rg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x534736b4, 0x319a888f, 0x4668ab94, 0xa3db6517, 0x16d164ff)}
}, Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, N
othing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Nothing, Modelin
gToolkit.var"#472#generated_observed#471"{Bool, ModelingToolkit.ODESystem, 
Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}, Base.Pairs{Symbol, Un
ion{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(Sci
MLBase.ODEFunction{true, SciMLBase.AutoSpecialize, ModelingToolkit.var"#f#4
64"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :
t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0xb81214c7, 0x658d6d58, 0xbe8eaa4e, 0x6cae405c, 0xc44acec5)}, RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x534736b
4, 0x319a888f, 0x4668ab94, 0xa3db6517, 0x16d164ff)}}, Matrix{Float64}, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Vector{Symbol}, Symbol, Nothing, ModelingToolkit.var"#472#genera
ted_observed#471"{Bool, ModelingToolkit.ODESystem, Dict{Any, Any}}, Nothing
, ModelingToolkit.ODESystem}(ModelingToolkit.var"#f#464"{RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xb81214c7, 0x658d6d58
, 0xbe8eaa4e, 0x6cae405c, 0xc44acec5)}, RuntimeGeneratedFunctions.RuntimeGe
neratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0x534736b4, 0x319a888f, 0x4668a
b94, 0xa3db6517, 0x16d164ff)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0xb81214c7, 0x658d6d58, 0xbe8eaa4e, 0x6cae405c, 
0xc44acec5)}(quote
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[29]" = (+)((+)((/)(-0.017241379310344827, (+)(1, t))
, (*)(0.25, (getindex)(ˍ₋arg1, 26))), (*)(0.75, (getindex)(ˍ₋arg1, 28)))
            var"(u(t))[1]" = (+)((+)((/)(-0.022988505747126436, (+)(1, t)),
 (*)(-0.3333333333333333, (getindex)(ˍ₋arg1, 1))), (*)(1.3333333333333333, 
(getindex)(ˍ₋arg1, 27)))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
                (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, 
Val{1}(), Val{(28,)}(), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666
66666667, var"(u(t))[1]"), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 27)))
, (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 1))), (*)((+)((+)((/)(0.1, (^)
((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), v
ar"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[1]"), 
2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), var"(u(t))[1]"), (getind
ex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)),
 (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[1]"), 2))), 2))), (/)((+)((+)
((*)(5.8, (getindex)(ˍ₋arg1, 27)), (*)(14.5, (getindex)(ˍ₋arg1, 1))), (*)(-
2.9, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), var"(u(t))[1]"), (geti
ndex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)
), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getin
dex)(ˍ₋arg1, 27)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (
*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getinde
x)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋ar
g1, 2)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 1)), (*)(1.4
5, (getindex)(ˍ₋arg1, 3))), (*)(-7.25, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)
((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 27)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"
(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(
-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)
(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex
)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2))
, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getind
ex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3))
, 2))), 2)))), (/)((+)((+)((*)(-1.45, var"(u(t))[1]"), (*)(2.9, (getindex)(
ˍ₋arg1, 1))), (*)(7.25, (getindex)(ˍ₋arg1, 27))), (*)((+)((+)((/)(0.3, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), va
r"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[1]"), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ
₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), var"(u(t))[1]"), (getinde
x)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), 
(*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[1]"), 2))), 2)))), (/)((+)((+)
((*)(5.316666666666667, (getindex)(ˍ₋arg1, 1)), (*)(0.9666666666666667, (ge
tindex)(ˍ₋arg1, 3))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 2))), (*)
((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 27)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 27)
)), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (g
etindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4,
 (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋a
rg1, 3)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 27)), (*)(-1
4.5, (getindex)(ˍ₋arg1, 1))), (*)(-5.8, (getindex)(ˍ₋arg1, 2))), (*)((+)((+
)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 27)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var
"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex
)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getinde
x)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)
), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1
, 27)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (geti
ndex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2)), 2))), 2)))), (getindex)(ˍ₋arg1,
 1)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 27)
), (*)(7.25, (getindex)(ˍ₋arg1, 1))), (*)(2.9, (getindex)(ˍ₋arg1, 2))), (*)
((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2)), 2))), (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋ar
g1, 2))), (getindex)(ˍ₋arg1, 27)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋a
rg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋a
rg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^
)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 27)), 2))), 2))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1,
 1)), (*)(-2.9, (getindex)(ˍ₋arg1, 3))), (*)(14.5, (getindex)(ˍ₋arg1, 2))),
 (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2)), 2))
), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(
ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 27)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)
(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)
(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))
), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 27)), (*)(3.3833
333333333337, (getindex)(ˍ₋arg1, 1))), (*)(-5.316666666666667, (getindex)(ˍ
₋arg1, 2))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋ar
g1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3,
 (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 27)), 2))), 2)), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex
)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2))
, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.3, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4
, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋
arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)
(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 27)), 2))), 2)))), (/)((+)((+)((*)(0.9666
666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.3833333333333337, (getindex)(ˍ
₋arg1, 3))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^
)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 27)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (
getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), 
(getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4
, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋
arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 1)), (*)(-5
.8, (getindex)(ˍ₋arg1, 3))), (*)(-14.5, (getindex)(ˍ₋arg1, 2))), (*)((+)((+
)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4
, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))
), (getindex)(ˍ₋arg1, 27)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)
), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3)
)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)(
(+)((*)(1.45, (getindex)(ˍ₋arg1, 4)), (*)(-2.9, (getindex)(ˍ₋arg1, 2))), (*
)(-7.25, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 
27)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 27)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg
1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), 
(getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (ge
tindex)(ˍ₋arg1, 2)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-3.38333333333
33337, (getindex)(ˍ₋arg1, 4)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 5
))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.6, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getin
dex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.3, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(
-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(
ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg
1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, 
(getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋
arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)),
 2))), 2))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 1)), (
*)(3.3833333333333337, (getindex)(ˍ₋arg1, 2))), (*)(-5.316666666666667, (ge
tindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.
6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (g
etindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.
3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4
)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getin
dex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋a
rg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (ge
tindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(-
2.9, (getindex)(ˍ₋arg1, 4)), (*)(5.8, (getindex)(ˍ₋arg1, 2))), (*)(14.5, (g
etindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (
getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (geti
ndex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋a
rg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 1)), (*)(2
.9, (getindex)(ˍ₋arg1, 3))), (*)(7.25, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)
((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), 
(/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), 
(getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)
), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-
4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ
₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 5)), (*)(
-2.9, (getindex)(ˍ₋arg1, 3))), (*)(-7.25, (getindex)(ˍ₋arg1, 4))), (*)((+)(
(+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1
)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)
), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (g
etindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)),
 (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex
)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 2)), (*
)(-5.8, (getindex)(ˍ₋arg1, 4))), (*)(-14.5, (getindex)(ˍ₋arg1, 3))), (*)((+
)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1,
 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 
2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), 
(getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (ge
tindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (getin
dex)(ˍ₋arg1, 3)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666666666
67, (getindex)(ˍ₋arg1, 2)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 3)))
, (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 4))), (*)((+)((+)((/)(0.1, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-
4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ
₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-
1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋
arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ
₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)
(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2
))), 2))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 3)), (*)(-14.5, (getinde
x)(ˍ₋arg1, 4))), (*)(-5.8, (getindex)(ˍ₋arg1, 5))), (*)((+)((+)((/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(
-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(
-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ
₋arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(
ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), 
(getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex
)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (
getindex)(ˍ₋arg1, 4)), (*)(-7.25, (getindex)(ˍ₋arg1, 5))), (*)(1.45, (getin
dex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (get
index)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (geti
ndex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (/)(0.3, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*
)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex
)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1
, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getin
dex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(5.31
6666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.3833333333333337, (getindex)(
ˍ₋arg1, 5))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)(
(/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5
)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)), (
/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (
getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), 
(getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4
, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋
arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 2)), (*)(
2.9, (getindex)(ˍ₋arg1, 4))), (*)(7.25, (getindex)(ˍ₋arg1, 3))), (*)((+)((+
)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)),
 (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)),
 (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5)))
, (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(
-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 5)), (*)
(5.8, (getindex)(ˍ₋arg1, 3))), (*)(14.5, (getindex)(ˍ₋arg1, 4))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2))
, (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2))
, (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))
), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getin
dex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (getindex
)(ˍ₋arg1, 4)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667,
 (getindex)(ˍ₋arg1, 3)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 4))), (
*)(-5.316666666666667, (getindex)(ˍ₋arg1, 5))), (*)((+)((+)((/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(
ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), 
(getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (
getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg
1, 7)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)
), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (geti
ndex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1,
 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2)))
, 2))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 7)), (*)(5.3
16666666666667, (getindex)(ˍ₋arg1, 5))), (*)(-3.3833333333333337, (getindex
)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getinde
x)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋a
rg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3
, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-
4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ
₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex
)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(-1.45, 
(getindex)(ˍ₋arg1, 3)), (*)(7.25, (getindex)(ˍ₋arg1, 4))), (*)(2.9, (getind
ex)(ˍ₋arg1, 5))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getin
dex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ
₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)
(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)
(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)
(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 
2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getinde
x)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(2.9, 
(getindex)(ˍ₋arg1, 4)), (*)(-14.5, (getindex)(ˍ₋arg1, 5))), (*)(-5.8, (geti
ndex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (get
index)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (get
index)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4))
, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((
+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getinde
x)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1
, 6)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 4)), (*)(14.5, 
(getindex)(ˍ₋arg1, 5))), (*)(-2.9, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)),
 (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(
0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((
+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (get
index)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (ge
tindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ
₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)
(1.45, (getindex)(ˍ₋arg1, 7)), (*)(-2.9, (getindex)(ˍ₋arg1, 5))), (*)(-7.25
, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)
), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))
), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^
)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (
getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex
)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6))
, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (getindex)(ˍ
₋arg1, 5)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667, (g
etindex)(ˍ₋arg1, 4)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 5))), (*)(
-5.316666666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.3, (^)((+)((
+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getinde
x)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1,
 8)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4,
 (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1,
 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getind
ex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1,
 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getind
ex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg
1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2
))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 4)), (*)(7.25, (getindex)(ˍ₋
arg1, 5))), (*)(2.9, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getind
ex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1
, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (g
etindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1,
 7)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1
, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getin
dex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋ar
g1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 
2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 7)), (*)(0.9
666666666666667, (getindex)(ˍ₋arg1, 8))), (*)(5.316666666666667, (getindex)
(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋a
rg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4
, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex
)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6))
, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3
, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋
arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(
ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(1.45, (g
etindex)(ˍ₋arg1, 8)), (*)(-2.9, (getindex)(ˍ₋arg1, 6))), (*)(-7.25, (getind
ex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(
ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)
(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.1, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*
)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)
(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)
(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 
2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getinde
x)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(2.9, 
(getindex)(ˍ₋arg1, 5)), (*)(-5.8, (getindex)(ˍ₋arg1, 7))), (*)(-14.5, (geti
ndex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex
)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (
*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), 
(*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getinde
x)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getinde
x)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1
, 7)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 7)), (*)(5.8, 
(getindex)(ˍ₋arg1, 5))), (*)(14.5, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)
(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (ge
tindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (get
index)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (ge
tindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ
₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (
getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (getindex)(ˍ₋ar
g1, 6)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.316666666666667, (getind
ex)(ˍ₋arg1, 7)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 9))), (*)(-3.38
33333333333337, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getind
ex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)))
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ
₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(
ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (
getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))),
 (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 7)), (*)(1.45, (getindex)(ˍ₋arg1,
 9))), (*)(-7.25, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)
(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9
)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex
)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex
)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)),
 (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))
)), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 5)), (*)(3.3833
333333333337, (getindex)(ˍ₋arg1, 6))), (*)(-5.316666666666667, (getindex)(ˍ
₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg
1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, 
(getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.1, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, 
(getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋ar
g1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋ar
g1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ
₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(2.9, (geti
ndex)(ˍ₋arg1, 6)), (*)(-14.5, (getindex)(ˍ₋arg1, 7))), (*)(-5.8, (getindex)
(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋a
rg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4
, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4
, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋
arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-
1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋
arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getin
dex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8))
, 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 5)), (*)(2.9, (get
index)(ˍ₋arg1, 7))), (*)(7.25, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), 
(*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getind
ex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋
arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-
4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getind
ex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7
)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (geti
ndex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7
)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 8)), (*)(5.8, (ge
tindex)(ˍ₋arg1, 6))), (*)(14.5, (getindex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.
3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)),
 (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getin
dex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ
₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(
-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getin
dex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋ar
g1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (get
index)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (getindex)(ˍ₋arg1,
 7)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 6))
, (*)(7.25, (getindex)(ˍ₋arg1, 7))), (*)(2.9, (getindex)(ˍ₋arg1, 8))), (*)(
(+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1
, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8))
, (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 
2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)(
(+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (ge
tindex)(ˍ₋arg1, 6)), 2))), 2))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 7)
), (*)(-2.9, (getindex)(ˍ₋arg1, 9))), (*)(14.5, (getindex)(ˍ₋arg1, 8))), (*
)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋ar
g1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8
)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2)))
, 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)))
, 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)
), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2)))), 
(/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 6)), (*)(3.38333333
33333337, (getindex)(ˍ₋arg1, 7))), (*)(-5.316666666666667, (getindex)(ˍ₋arg
1, 8))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8
)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (get
index)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋ar
g1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (get
index)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)((+)((+
)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex
)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1,
 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋ar
g1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666
666667, (getindex)(ˍ₋arg1, 10)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1
, 9))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)
), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)(
(+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getind
ex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋
arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(
-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (geti
ndex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (^)((+)((
+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getinde
x)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1
, 10)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 7)), (*)(-5.8,
 (getindex)(ˍ₋arg1, 9))), (*)(-14.5, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^
)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (
getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (g
etindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getind
ex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8))
, (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getinde
x)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2)))), (/)((+)((+)
((*)(1.45, (getindex)(ˍ₋arg1, 10)), (*)(-2.9, (getindex)(ˍ₋arg1, 8))), (*)(
-7.25, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)
), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ
₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2
)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2)
)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9
))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)),
 (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (ge
tindex)(ˍ₋arg1, 8)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666666
66667, (getindex)(ˍ₋arg1, 7)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 8
))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)),
 (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex
)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex
)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getin
dex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg
1, 7)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 9)), (*)(-7.25
, (getindex)(ˍ₋arg1, 10))), (*)(1.45, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)
((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))),
 (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)),
 (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10)
)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))
), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)),
 (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (ge
tindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1,
 10)), (*)(5.8, (getindex)(ˍ₋arg1, 8))), (*)(14.5, (getindex)(ˍ₋arg1, 9))),
 (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getind
ex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)
), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 1
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(
ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2)))
, 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 10)), (*)(
5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)(0.9666666666666667, (getind
ex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (get
index)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (g
etindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (ge
tindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)
(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)
), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+
)((*)(-1.45, (getindex)(ˍ₋arg1, 7)), (*)(2.9, (getindex)(ˍ₋arg1, 9))), (*)(
7.25, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg
1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg
1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))
), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg
1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (geti
ndex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)
), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/
)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 8)), (*)(-5.8, (getindex)(ˍ₋arg1, 10)
)), (*)(-14.5, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋
arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)),
 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10))
, 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 1
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋a
rg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (getindex)(ˍ₋arg1, 9)), (*)
((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 
10)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 12))), (*)(-3.383333333333
3337, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋a
rg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 
8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))
), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ
₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)
), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))
), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 10)), (*)(1.45, (getindex
)(ˍ₋arg1, 12))), (*)(-7.25, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (get
index)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.1
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)
), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (geti
ndex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getinde
x)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10))
, (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getin
dex)(ˍ₋arg1, 12)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 9))
, (*)(14.5, (getindex)(ˍ₋arg1, 10))), (*)(-2.9, (getindex)(ˍ₋arg1, 11))), (
*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11))
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)
(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋
arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 
12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 
2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 8)), (*)(2.9, (getin
dex)(ˍ₋arg1, 10))), (*)(7.25, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.6,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (ge
tindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.
3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9
)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (get
index)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)
), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (
^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), 
(getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getinde
x)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex
)(ˍ₋arg1, 8)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 9))), (*)(-5.3166
66666666667, (getindex)(ˍ₋arg1, 10))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 
9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ
₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8
)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12))
, 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (geti
ndex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg
1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 
2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 9)), (*)(-14.5, (getin
dex)(ˍ₋arg1, 10))), (*)(-5.8, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (g
etindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (ge
tindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getin
dex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10
)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (get
index)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (geti
ndex)(ˍ₋arg1, 10)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.966666666666
6667, (getindex)(ˍ₋arg1, 9)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 10
))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)
), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)
((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (get
index)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getinde
x)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11))
, (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12)
), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 2))
), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
0)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((
+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (g
etindex)(ˍ₋arg1, 9)), 2))), 2))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 1
0)), (*)(-5.8, (getindex)(ˍ₋arg1, 12))), (*)(-14.5, (getindex)(ˍ₋arg1, 11))
), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 
2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getind
ex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)
(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg
1, 13)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋ar
g1, 12)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 10)), (*)(-2
.9, (getindex)(ˍ₋arg1, 12))), (*)(14.5, (getindex)(ˍ₋arg1, 11))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1,
 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9
)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)
(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))
), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2)
)), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 13)), (*)(-2.9, (getind
ex)(ˍ₋arg1, 11))), (*)(-7.25, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.1
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10
)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+
)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (ge
tindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getind
ex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)
), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (
/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12
)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), 
(getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, (
getindex)(ˍ₋arg1, 13)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 12))), 
(*)(5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1, (^)((
+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (ge
tindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex
)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋
arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*
)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (ge
tindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getind
ex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 9)
), (*)(7.25, (getindex)(ˍ₋arg1, 10))), (*)(2.9, (getindex)(ˍ₋arg1, 11))), (
*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)
(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ
₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (g
etindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 
9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋ar
g1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex
)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)))), (getindex)(ˍ₋arg1, 11
)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667, (getindex)
(ˍ₋arg1, 10)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 11))), (*)(-5.316
666666666667, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1,
 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (geti
ndex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+)((+
)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋a
rg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)
(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)
), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+
)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋a
rg1, 10)), 2))), 2))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 10)), (*)(
2.9, (getindex)(ˍ₋arg1, 12))), (*)(7.25, (getindex)(ˍ₋arg1, 11))), (*)((+)(
(+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1
, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ
₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex
)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 1
4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋
arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (/)((+)((+)((*)(2.9, (ge
tindex)(ˍ₋arg1, 11)), (*)(-5.8, (getindex)(ˍ₋arg1, 13))), (*)(-14.5, (getin
dex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), 
(getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (ge
tindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1
, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11
)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(
ˍ₋arg1, 14)), (*)(-2.9, (getindex)(ˍ₋arg1, 12))), (*)(-7.25, (getindex)(ˍ₋a
rg1, 13))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(
-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getinde
x)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (
*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)
), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), 
(getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (geti
ndex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)(
(+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 13)), (*)(5.8, (getindex)(ˍ₋arg1, 11))
), (*)(14.5, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋
arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 
10)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋ar
g1, 13)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(
ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13))
, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋ar
g1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (g
etindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*
)(0.9666666666666667, (getindex)(ˍ₋arg1, 14)), (*)(-3.3833333333333337, (ge
tindex)(ˍ₋arg1, 13))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 12))), (*)
((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ
₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 1
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getind
ex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (get
index)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋ar
g1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 1
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getind
ex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (getindex)(ˍ₋arg1, 
12)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 13))
, (*)(-7.25, (getindex)(ˍ₋arg1, 14))), (*)(1.45, (getindex)(ˍ₋arg1, 15))), 
(*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 1
4)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1
, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (get
index)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (
getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1
, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (get
index)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)((+)((+)((*)(-
0.9666666666666667, (getindex)(ˍ₋arg1, 11)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 12))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 13))), (*)((
+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 
2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex
)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.3, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getin
dex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1
, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex
)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(-1.45
, (getindex)(ˍ₋arg1, 11)), (*)(2.9, (getindex)(ˍ₋arg1, 13))), (*)(7.25, (ge
tindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12)))
, (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 
2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋a
rg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 1
2))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 
2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 12)), (*)(-5.8, (getindex)(ˍ
₋arg1, 14))), (*)(-14.5, (getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getind
ex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), 
(*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (ge
tindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))),
 (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (ge
tindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/
)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 14)), (*)(5.316666666
666667, (getindex)(ˍ₋arg1, 13))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1
, 15))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ
₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)),
 (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getinde
x)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
3)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), 
(*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (ge
tindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getinde
x)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
4)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (/)((+)
((+)((*)(-2.9, (getindex)(ˍ₋arg1, 14)), (*)(5.8, (getindex)(ˍ₋arg1, 12))), 
(*)(14.5, (getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(
ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)
), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getin
dex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1,
 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋a
rg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (
getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1,
 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (geti
ndex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (getindex)(ˍ₋arg1
, 13)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 14
)), (*)(1.45, (getindex)(ˍ₋arg1, 16))), (*)(-7.25, (getindex)(ˍ₋arg1, 15)))
, (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 
12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getin
dex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋ar
g1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (g
etindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4,
 (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)
(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋ar
g1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)
(5.316666666666667, (getindex)(ˍ₋arg1, 14)), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 16))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 15))), (*)(
(+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getinde
x)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (geti
ndex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg
1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getinde
x)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))), (/)((+)((+)((*)(-1.4
5, (getindex)(ˍ₋arg1, 12)), (*)(7.25, (getindex)(ˍ₋arg1, 13))), (*)(2.9, (g
etindex)(ˍ₋arg1, 14))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))
), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 
13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))),
 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 13)), (*)(14.5, (getindex)(
ˍ₋arg1, 14))), (*)(-2.9, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.3, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(
-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getind
ex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (ge
tindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))),
 (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (ge
tindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (/
)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 12)), (*)(3.383333333
3333337, (getindex)(ˍ₋arg1, 13))), (*)(-5.316666666666667, (getindex)(ˍ₋arg
1, 14))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(
ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13))
, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getind
ex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)),
 (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (g
etindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getind
ex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+
)((+)((*)(2.9, (getindex)(ˍ₋arg1, 13)), (*)(-14.5, (getindex)(ˍ₋arg1, 14)))
, (*)(-5.8, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex
)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 1
4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg
1, 15)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ
₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)),
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg
1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (ge
tindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (getindex)(ˍ₋ar
g1, 14)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 1
4)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))), (*)(14.5, (getindex)(ˍ₋arg1, 15)))
, (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 
2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getind
ex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋ar
g1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (get
index)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((
*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)
(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (g
etindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋a
rg1, 16)), 2))), 2))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 17)), (*)(-
2.9, (getindex)(ˍ₋arg1, 15))), (*)(-7.25, (getindex)(ˍ₋arg1, 16))), (*)((+)
((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg
1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(
ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 
17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ
₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)(-0.9666
666666666667, (getindex)(ˍ₋arg1, 13)), (*)(3.3833333333333337, (getindex)(ˍ
₋arg1, 14))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)
((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 1
5))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋ar
g1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1
, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg
1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getin
dex)(ˍ₋arg1, 14)), (*)(-5.8, (getindex)(ˍ₋arg1, 16))), (*)(-14.5, (getindex
)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)
(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)),
 (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0
.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), 
(getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), 
(/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16
))), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)),
 (getindex)(ˍ₋arg1, 16)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, 
(getindex)(ˍ₋arg1, 17)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 16))),
 (*)(5.316666666666667, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (g
etindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getinde
x)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (get
index)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getin
dex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1
4)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16))
, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (get
index)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1,
 13)), (*)(7.25, (getindex)(ˍ₋arg1, 14))), (*)(2.9, (getindex)(ˍ₋arg1, 15))
), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)),
 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getin
dex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋a
rg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (
getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((
+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (ge
tindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)(
(*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex
)(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 1
5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (g
etindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (getindex)(ˍ₋
arg1, 15)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667, (g
etindex)(ˍ₋arg1, 14)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 15))), (*
)(-5.316666666666667, (getindex)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.1, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (get
index)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)
(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getin
dex)(ˍ₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (g
etindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), 
(getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getin
dex)(ˍ₋arg1, 14)), 2))), 2))), (/)((+)((+)((*)(0.9666666666666667, (getinde
x)(ˍ₋arg1, 18)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 17))), (*)(5.3
16666666666667, (getindex)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg
1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (ge
tindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getin
dex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ
₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getinde
x)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
7)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (
getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ
₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 17)), (*
)(5.8, (getindex)(ˍ₋arg1, 15))), (*)(14.5, (getindex)(ˍ₋arg1, 16))), (*)((+
)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2
))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2)))
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(
ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getind
ex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1,
 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)
), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 14)), (*)(2.9, (g
etindex)(ˍ₋arg1, 16))), (*)(7.25, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17))
, (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2)),
 (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 1
5))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg
1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2)
)), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 1
5))), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex
)(ˍ₋arg1, 18)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))), (*)(-7.25, (getindex)(ˍ
₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋
arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)
(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (ge
tindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
6)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16))
, (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (ge
tindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/
)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 15)), (*)(-5.8, (getindex)(ˍ₋arg1, 17
))), (*)(-14.5, (getindex)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)
(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg
1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ
₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getinde
x)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
7)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ
₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)),
 (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (getindex)(
ˍ₋arg1, 16)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667, 
(getindex)(ˍ₋arg1, 15)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 16))), 
(*)(-5.316666666666667, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (g
etindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getinde
x)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (get
index)(ˍ₋arg1, 18)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getin
dex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17
)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16))
, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (get
index)(ˍ₋arg1, 15)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 1
8)), (*)(5.8, (getindex)(ˍ₋arg1, 16))), (*)(14.5, (getindex)(ˍ₋arg1, 17))),
 (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getinde
x)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)
(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg
1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(
ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋ar
g1, 18)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg
1, 19)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 18))), (*)(5.316666666
666667, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1,
 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)),
 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex
)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg
1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (ge
tindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
9)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 15)), (*)(2.9, 
(getindex)(ˍ₋arg1, 17))), (*)(7.25, (getindex)(ˍ₋arg1, 16))), (*)((+)((+)((
/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16)
)), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)),
 (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))),
 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 
2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1,
 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getinde
x)(ˍ₋arg1, 16)), (*)(-5.8, (getindex)(ˍ₋arg1, 18))), (*)(-14.5, (getindex)(
ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ
₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*
)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (g
etindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))
), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (
getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg
1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 17))), (*)(-7.25, (getindex)(ˍ₋arg1, 
18))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (g
etindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)
(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)
), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (/)(0.3, (
^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)),
 (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (geti
ndex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg
1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4
, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (getindex
)(ˍ₋arg1, 17)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667
, (getindex)(ˍ₋arg1, 16)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 17)))
, (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getin
dex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)),
 (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (g
etindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (get
index)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17
)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (g
etindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1,
 18)), (*)(-7.25, (getindex)(ˍ₋arg1, 19))), (*)(1.45, (getindex)(ˍ₋arg1, 20
))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋ar
g1, 19)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ
₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)
((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getind
ex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ
₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)
((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 19)), (*)(5.316666666666667, (
getindex)(ˍ₋arg1, 18))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 20))), 
(*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex
)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2)), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1
, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (get
index)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (
getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ
₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1
, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)((*)(
-2.9, (getindex)(ˍ₋arg1, 19)), (*)(5.8, (getindex)(ˍ₋arg1, 17))), (*)(14.5,
 (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), 
(getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 
2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)
)), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)
(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (ge
tindex)(ˍ₋arg1, 16)), (*)(2.9, (getindex)(ˍ₋arg1, 18))), (*)(7.25, (getinde
x)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex
)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)),
 (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2)), (/)(
0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 
18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (geti
ndex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
8)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))))
, (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 17)), (*)(-5.8, (getindex)(ˍ₋arg1
, 19))), (*)(-14.5, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.6, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ
₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)),
 (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)), (/)(0.3, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-
4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getinde
x)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)
(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), 
(*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getinde
x)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
8)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (getind
ex)(ˍ₋arg1, 18)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666666666
67, (getindex)(ˍ₋arg1, 17)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 18)
)), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)
), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), 
(getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (g
etindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)
), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), 
(getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg
1, 19)), (*)(1.45, (getindex)(ˍ₋arg1, 21))), (*)(-7.25, (getindex)(ˍ₋arg1, 
20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋
arg1, 20)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)
(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)
), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (
^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)),
 (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (geti
ndex)(ˍ₋arg1, 21)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg
1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4
, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)))), (/)((+)((
+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 19)), (*)(0.9666666666666667, 
(getindex)(ˍ₋arg1, 21))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 20)))
, (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 
2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getind
ex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (g
etindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4,
 (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)
(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21
)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (ge
tindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)))), (/)((+)((+)((*
)(-1.45, (getindex)(ˍ₋arg1, 17)), (*)(7.25, (getindex)(ˍ₋arg1, 18))), (*)(2
.9, (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)
), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋
arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)),
 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 18)), (*)(14.5, (geti
ndex)(ˍ₋arg1, 19))), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.
1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
0)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (
getindex)(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)
), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 
18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)
), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))
)), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 18)), (*)(-14.5, (getindex)(ˍ₋a
rg1, 19))), (*)(-5.8, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)
(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)
), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)
(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getin
dex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getinde
x)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19))
, (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getin
dex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)))), (geti
ndex)(ˍ₋arg1, 19)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.8, (getindex)
(ˍ₋arg1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 21))), (*)(14.5, (getindex)(ˍ₋a
rg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (getindex
)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19
)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (geti
ndex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)
), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), 
(getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (get
index)(ˍ₋arg1, 21)), 2))), 2))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 2
2)), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), (*)(-7.25, (getindex)(ˍ₋arg1, 21))
), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (
getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1,
 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (geti
ndex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋a
rg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (
getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4
, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex
)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋a
rg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (
getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)))), (/)((+)((+)((
*)(-1.45, (getindex)(ˍ₋arg1, 18)), (*)(7.25, (getindex)(ˍ₋arg1, 19))), (*)(
2.9, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg
1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)
)), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21))
, 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 
22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getin
dex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6,
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ
₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20))
, 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 18))
, (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 19))), (*)(-5.316666666666667,
 (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 2
0))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 
2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2)
)), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)
(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg
1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)
)), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 19)), (*)(-5.8, (getinde
x)(ˍ₋arg1, 21))), (*)(-14.5, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)),
 (*)(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (ge
tindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21
))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2
))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)),
 (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))))
, (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 21)), (*)(0.96666
66666666667, (getindex)(ˍ₋arg1, 22))), (*)(5.316666666666667, (getindex)(ˍ₋
arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (getinde
x)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
9)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (get
index)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(
0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20
)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)),
 (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (get
index)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)))), (ge
tindex)(ˍ₋arg1, 20)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-2.9, (getind
ex)(ˍ₋arg1, 21)), (*)(-7.25, (getindex)(ˍ₋arg1, 22))), (*)(1.45, (getindex)
(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)
), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (
/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21
)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (
getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (
/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 21)), (*)(-3.383333333
3333337, (getindex)(ˍ₋arg1, 22))), (*)(0.9666666666666667, (getindex)(ˍ₋arg
1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)
(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋
arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)
(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)),
 (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (g
etindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getind
ex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+
)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 19)), (*)(2.9, (getindex)(ˍ₋arg1, 21)))
, (*)(7.25, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 2
0)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getind
ex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)
(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg
1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ
₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)),
 (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)
(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg
1, 19)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg
1, 19)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 20))), (*)(-5.316666666
666667, (getindex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋a
rg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 1
9)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg
1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (ge
tindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋a
rg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 1
9)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 20)), (*)(-14.5, 
(getindex)(ˍ₋arg1, 21))), (*)(-5.8, (getindex)(ˍ₋arg1, 22))), (*)((+)((+)((
/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22
)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)
), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1,
 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋a
rg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 
2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2)))
, 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 22)), (*)(5.8, (getindex)
(ˍ₋arg1, 20))), (*)(14.5, (getindex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22)))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (g
etindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)))), (
getindex)(ˍ₋arg1, 21)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666
66666667, (getindex)(ˍ₋arg1, 20)), (*)(3.3833333333333337, (getindex)(ˍ₋arg
1, 21))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 22))), (*)((+)((+)((/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23))
, (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)),
 (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 2
3))), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)
(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2)
)), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 2
2))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)((+)((+)((*)(0.96666666666666
67, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 22))
), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23))
, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (get
index)(ˍ₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getind
ex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21
)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (
/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23
)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), 
(getindex)(ˍ₋arg1, 24)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋a
rg1, 20)), (*)(7.25, (getindex)(ˍ₋arg1, 21))), (*)(2.9, (getindex)(ˍ₋arg1, 
22))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 2
4)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (g
etindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (get
index)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((
*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)
(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (geti
ndex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg
1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3
, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((
+)((*)(5.8, (getindex)(ˍ₋arg1, 21)), (*)(14.5, (getindex)(ˍ₋arg1, 22))), (*
)(-2.9, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1,
 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)),
 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex
)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg
1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (ge
tindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 2
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+)((+)((*)(1.4
5, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getindex)(ˍ₋arg1, 22))), (*)(-7.25, 
(getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 
21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)
), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))
), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))),
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ
₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)
), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))
), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 21)), (*)(-14.5, (getinde
x)(ˍ₋arg1, 22))), (*)(-5.8, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (get
index)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), 
(getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (g
etindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg
1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), 
(getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))),
 (getindex)(ˍ₋arg1, 22)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-3.383333
3333333337, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (getindex)(ˍ₋ar
g1, 23))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/
)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1,
 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)
), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), 
(getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 
2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 
24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)((+)((+)((*)(-1.45, (getinde
x)(ˍ₋arg1, 21)), (*)(7.25, (getindex)(ˍ₋arg1, 22))), (*)(2.9, (getindex)(ˍ₋
arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getinde
x)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
2)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (get
index)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)),
 (getindex)(ˍ₋arg1, 24)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (get
index)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (/)
((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 23)), (*)(-7.25, (getindex)(ˍ₋arg1, 2
4))), (*)(1.45, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (geti
ndex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg
1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ
₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋a
rg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(
-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getin
dex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ
₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ
₋arg1, 21)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 22))), (*)(-5.31666
6666666667, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex
)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 2
3)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg
1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1,
 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, 
(getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (geti
ndex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg
1, 23)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 22)), (*)(-5.
8, (getindex)(ˍ₋arg1, 24))), (*)(-14.5, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋
arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1
, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋ar
g1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 
2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 24)), (*)(5.8, (getin
dex)(ˍ₋arg1, 22))), (*)(14.5, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22))
, (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (g
etindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (geti
ndex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2
3)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2)))
), (getindex)(ˍ₋arg1, 23)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666
666666666667, (getindex)(ˍ₋arg1, 22)), (*)(3.3833333333333337, (getindex)(ˍ
₋arg1, 23))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 24))), (*)((+)((+)
((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 2
3))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)
), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))
), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg
1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getin
dex)(ˍ₋arg1, 24)), (*)(1.45, (getindex)(ˍ₋arg1, 26))), (*)(-7.25, (getindex
)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)
(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), 
(*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), 
(getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 2
3)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getin
dex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24
)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2)))),
 (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 23)), (*)(14.5, (getindex)(ˍ₋arg1,
 24))), (*)(-2.9, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+
)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getinde
x)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋a
rg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1
, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4,
 (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getin
dex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)
(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)
), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((
+)((*)(-1.45, (getindex)(ˍ₋arg1, 22)), (*)(2.9, (getindex)(ˍ₋arg1, 24))), (
*)(7.25, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1
, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getinde
x)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋ar
g1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (g
etindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 
22)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 23)), (*)(-14.5,
 (getindex)(ˍ₋arg1, 24))), (*)(-5.8, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)(
(/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23
))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2)))
, 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))
), 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 24)), (*)(0
.9666666666666667, (getindex)(ˍ₋arg1, 26))), (*)(-3.3833333333333337, (geti
ndex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24
)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25)
)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2)))
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg
1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (g
etindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2)
))), (getindex)(ˍ₋arg1, 24)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-1.45
, (getindex)(ˍ₋arg1, 23)), (*)(7.25, (getindex)(ˍ₋arg1, 24))), (*)(2.9, (ge
tindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25)))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 
2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26)
)), var"(u(t))[29]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getinde
x)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
4)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)((+)(
(+)((*)(5.8, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getindex)(ˍ₋arg1, 26))), (
*)(14.5, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ
₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25))
, 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getind
ex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 
26)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)
(ˍ₋arg1, 26))), var"(u(t))[29]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 2
4)), (getindex)(ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666
667, (getindex)(ˍ₋arg1, 23)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 24
))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3,
 (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)
), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), var"(u(t))
[29]"), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-
4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋a
rg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (
getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex
)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25
)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (g
etindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋
arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 24)), (*)(
-5.8, (getindex)(ˍ₋arg1, 26))), (*)(-14.5, (getindex)(ˍ₋arg1, 25))), (*)((+
)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26)
)), var"(u(t))[29]"), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), 
(getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), 
(/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2
6)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2
))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)),
 (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))))
, (/)((+)((+)((*)(1.45, var"(u(t))[29]"), (*)(-2.9, (getindex)(ˍ₋arg1, 25))
), (*)(-7.25, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ
₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), var"(u(t))[29]"), 2))), 2
)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ
₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2)))
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg
1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(
ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)
), var"(u(t))[29]"), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), var"(u(t))[29]"), 2))), 2)))), (/)(
(+)((+)((*)(0.9666666666666667, var"(u(t))[29]"), (*)(-3.3833333333333337, 
(getindex)(ˍ₋arg1, 26))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 25))), 
(*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (get
index)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getinde
x)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1
, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getin
dex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), var"(u(t))[29]"), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), 
var"(u(t))[29]"), 2))), 2)))), (getindex)(ˍ₋arg1, 25)), (*)((+)((+)((+)((+)
((+)((/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 24)), (*)(3.38
33333333333337, (getindex)(ˍ₋arg1, 25))), (*)(-5.316666666666667, (getindex
)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))
[29]"), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋a
rg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (
getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4
, var"(u(t))[29]")), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 28))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋ar
g1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)((+)((+)((*)(-2.9, var"(u
(t))[29]"), (*)(5.8, (getindex)(ˍ₋arg1, 25))), (*)(14.5, (getindex)(ˍ₋arg1,
 26))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋
arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), 
(getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg
1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (ge
tindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2))), (/)(0.1, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(
t))[29]")), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 28)), 2))), 2
))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (getin
dex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2)))), (/)((+)((+)(
(*)(-1.45, (getindex)(ˍ₋arg1, 24)), (*)(2.9, (getindex)(ˍ₋arg1, 26))), (*)(
7.25, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋ar
g1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))
[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2))),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 26)), (*)(-4, var"(u(t))[29]")), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), (getinde
x)(ˍ₋arg1, 28)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋
arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), 
(getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)(
(*)(1.45, (getindex)(ˍ₋arg1, 28)), (*)(-2.9, (getindex)(ˍ₋arg1, 26))), (*)(
-7.25, var"(u(t))[29]")), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), v
ar"(u(t))[29]"), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (geti
ndex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)
), (*)(-4, var"(u(t))[29]")), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋a
rg1, 28)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")), (getindex)(ˍ₋arg1, 28)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 2
6)), (getindex)(ˍ₋arg1, 28)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(
ˍ₋arg1, 25)), (*)(-5.8, var"(u(t))[29]")), (*)(-14.5, (getindex)(ˍ₋arg1, 26
))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var
"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2)))
, 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋
arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))
[29]")), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, var
"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 28)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (getindex
)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26
)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2)))), (/)((+)((+)((*)
(-3.3833333333333337, var"(u(t))[29]"), (*)(0.9666666666666667, (getindex)(
ˍ₋arg1, 28))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)
((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 
24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)
), var"(u(t))[29]"), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")), (getind
ex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[29]"), (
getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 28)), 2))), 2))), (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(
t))[29]")), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 28)), 2))), 2
)))), (getindex)(ˍ₋arg1, 26)), (+)((+)((+)((+)((+)((*)(0.2, var"(u(t))[1]")
, (*)(-0.2, (getindex)(ˍ₋arg1, 4))), (*)(-1, (getindex)(ˍ₋arg1, 27))), (*)(
2.0, (getindex)(ˍ₋arg1, 1))), (*)(-2.0, (getindex)(ˍ₋arg1, 2))), (getindex)
(ˍ₋arg1, 3)), (+)((+)((+)((+)((+)((*)(-0.2, (getindex)(ˍ₋arg1, 23)), (*)(-1
, var"(u(t))[29]")), (*)(0.2, (getindex)(ˍ₋arg1, 28))), (*)(-2.0, (getindex
)(ˍ₋arg1, 25))), (*)(2.0, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 24))
)
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x534736b4, 0x319a888f, 0x4668ab94, 0xa3db6517, 0x16d164ff)}(quot
e
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[29]" = (+)((+)((/)(-0.017241379310344827, (+)(1, t))
, (*)(0.25, (getindex)(ˍ₋arg1, 26))), (*)(0.75, (getindex)(ˍ₋arg1, 28)))
            var"(u(t))[1]" = (+)((+)((/)(-0.022988505747126436, (+)(1, t)),
 (*)(-0.3333333333333333, (getindex)(ˍ₋arg1, 1))), (*)(1.3333333333333333, 
(getindex)(ˍ₋arg1, 27)))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/Symbolics/FGTCH/src/build_function.jl:519 =#
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds
 begin
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, var"(u(t))[1]"), (*)(3.3833333333333337, (getindex)(ˍ₋
arg1, 27))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 1))), (*)((+)((+)((
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 27)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u
(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ
₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(
ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), 
(getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), var"(u(t))[1]
"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[1]"), 2))), 2))), 
(/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 27)), (*)(14.5, (getindex)(ˍ₋arg1, 
1))), (*)(-2.9, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), var"(u(t))[
1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[1]"), 2))), 2)),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
2)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2)), 2))), 2))
), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)
), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (get
index)(ˍ₋arg1, 2)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 1
)), (*)(1.45, (getindex)(ˍ₋arg1, 3))), (*)(-7.25, (getindex)(ˍ₋arg1, 2))), 
(*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 27)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 
27))), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)),
 (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2)))
, (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(
-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(
ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(-1.45, var"(u(t))[1]"), (*)(2.9, 
(getindex)(ˍ₋arg1, 1))), (*)(7.25, (getindex)(ˍ₋arg1, 27))), (*)((+)((+)((/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 27)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(
t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋
arg1, 2)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ
₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (
getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), var"(u(t))[1]"
), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[1]"), 2))), 2)))), 
(/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 1)), (*)(0.9666666666
666667, (getindex)(ˍ₋arg1, 3))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1
, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 27)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(
ˍ₋arg1, 27))), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 27)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg
1, 27)), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋ar
g1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (ge
tindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 2
7)), (*)(-14.5, (getindex)(ˍ₋arg1, 1))), (*)(-5.8, (getindex)(ˍ₋arg1, 2))),
 (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 27)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1,
 27))), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27))
, (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))
), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getin
dex)(ˍ₋arg1, 27)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2)), 2))), 2)))), (getind
ex)(ˍ₋arg1, 1))
                        ˍ₋out[2] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-1.45, (getindex)(ˍ₋arg1, 27)), (*)(7.25, (getindex)(ˍ₋arg1, 1))), (*)(2.9,
 (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (g
etindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1
, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 27)), 2))), 2)), 
(/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3
)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), 
(/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), 
(getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋
arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(
3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (/)((+)((+
)((*)(5.8, (getindex)(ˍ₋arg1, 1)), (*)(-2.9, (getindex)(ˍ₋arg1, 3))), (*)(1
4.5, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27))
, (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋
arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 27)), 2))), 2
)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)
)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2
)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (geti
ndex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getin
dex)(ˍ₋arg1, 27)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 1))), (*)(-5.
316666666666667, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(
ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (
getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 2
7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3
)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getinde
x)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)
), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ
₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 27)), 2))), 
2)))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.3
833333333333337, (getindex)(ˍ₋arg1, 3))), (*)(5.316666666666667, (getindex)
(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋
arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(
3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 27)), 2))), 2)), (/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getind
ex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(
-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getinde
x)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(2.9, (
getindex)(ˍ₋arg1, 1)), (*)(-5.8, (getindex)(ˍ₋arg1, 3))), (*)(-14.5, (getin
dex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex
)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), 
(*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 27)), 2))), 2)), (/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (ge
tindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), 
(*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getind
ex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg
1, 3)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 4)), (*)(-2.9
, (getindex)(ˍ₋arg1, 2))), (*)(-7.25, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)(
(/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 1)), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, 
(^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))),
 (getindex)(ˍ₋arg1, 27)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)),
 (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3)))
, (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(
-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 4)), 2))), 2)))), (getindex)(ˍ₋arg1, 2))
                        ˍ₋out[3] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-3.3833333333333337, (getindex)(ˍ₋arg1, 4)), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 5))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 3))), (*)((+)(
(+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)
), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (g
etindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)),
 (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex
)(ˍ₋arg1, 5)), 2))), 2))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(
ˍ₋arg1, 1)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 2))), (*)(-5.316666
666666667, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ
₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1
, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), 
(getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)
((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 4)), (*)(5.8, (getindex)(ˍ₋arg1, 2)))
, (*)(14.5, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(
ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ
₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))
), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg
1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), 
(getindex)(ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋ar
g1, 1)), (*)(2.9, (getindex)(ˍ₋arg1, 3))), (*)(7.25, (getindex)(ˍ₋arg1, 2))
), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)
), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)
(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋ar
g1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1))
, (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋a
rg1, 5)), (*)(-2.9, (getindex)(ˍ₋arg1, 3))), (*)(-7.25, (getindex)(ˍ₋arg1, 
4))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1
, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getin
dex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1,
 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getind
ex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ
₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4
))), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ
₋arg1, 2)), (*)(-5.8, (getindex)(ˍ₋arg1, 4))), (*)(-14.5, (getindex)(ˍ₋arg1
, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋ar
g1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (get
index)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg
1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)
(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))),
 2)))), (getindex)(ˍ₋arg1, 3))
                        ˍ₋out[4] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 2)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 3))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 4))), (*)((+)
((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 
2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3
)), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5
))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (
*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getinde
x)(ˍ₋arg1, 4)), 2))), 2))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 3)), (*
)(-14.5, (getindex)(ˍ₋arg1, 4))), (*)(-5.8, (getindex)(ˍ₋arg1, 5))), (*)((+
)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1,
 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 
3)), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 
5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (ge
tindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+
)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 4)), (*)(-7.25, (getindex)(ˍ₋arg1, 5))),
 (*)(1.45, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ
₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg
1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), 
(getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)
((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.383333333333
3337, (getindex)(ˍ₋arg1, 5))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 6
))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 
5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 
2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getinde
x)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getinde
x)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4
)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(
ˍ₋arg1, 2)), (*)(2.9, (getindex)(ˍ₋arg1, 4))), (*)(7.25, (getindex)(ˍ₋arg1,
 3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1
, 5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1
, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getin
dex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getin
dex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1,
 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)
(ˍ₋arg1, 5)), (*)(5.8, (getindex)(ˍ₋arg1, 3))), (*)(14.5, (getindex)(ˍ₋arg1
, 4))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg
1, 5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg
1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (geti
ndex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))),
 2)))), (getindex)(ˍ₋arg1, 4))
                        ˍ₋out[5] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 3)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 4))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 5))), (*)((+)
((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2
)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5
)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (
getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg
1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4))
, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((
+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getinde
x)(ˍ₋arg1, 3)), 2))), 2))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(
ˍ₋arg1, 7)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 5))), (*)(-3.3833333
333333337, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ
₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1,
 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2)))
, 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg
1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), 
(getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)
((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 3)), (*)(7.25, (getindex)(ˍ₋arg1, 4)
)), (*)(2.9, (getindex)(ˍ₋arg1, 5))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)
(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg
1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getind
ex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2)
)), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋a
rg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (get
index)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 
4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (
/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 4)), (*)(-14.5, (getindex)(ˍ₋arg1, 5
))), (*)(-5.8, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getinde
x)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex
)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))),
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋
arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)
), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋a
rg1, 4)), (*)(14.5, (getindex)(ˍ₋arg1, 5))), (*)(-2.9, (getindex)(ˍ₋arg1, 6
))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 
6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2
))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex
)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getinde
x)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)
))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 7)), (*)(-2.9, (getindex)(ˍ₋a
rg1, 5))), (*)(-7.25, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ
₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (g
etindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1
, 7)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5))
, 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getin
dex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋a
rg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))),
 2)))), (getindex)(ˍ₋arg1, 5))
                        ˍ₋out[6] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 4)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 5))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)
((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7
))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6
))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), 
(*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getinde
x)(ˍ₋arg1, 6)), 2))), 2))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 4)), 
(*)(7.25, (getindex)(ˍ₋arg1, 5))), (*)(2.9, (getindex)(ˍ₋arg1, 6))), (*)((+
)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 
7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 
5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 
6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)),
 (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getind
ex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getinde
x)(ˍ₋arg1, 7)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 8))), (*)(5.3166
66666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2)
)), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getin
dex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋a
rg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (get
index)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6
)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (
/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 8)), (*)(-2.9, (getindex)(ˍ₋arg1, 6
))), (*)(-7.25, (getindex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ
₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (ge
tindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(
ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(
ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (
getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2))))
, (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 5)), (*)(-5.8, (getindex)(ˍ₋arg1,
 7))), (*)(-14.5, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)
(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8
)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (
getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex
)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex
)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1,
 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)
(ˍ₋arg1, 7)), (*)(5.8, (getindex)(ˍ₋arg1, 5))), (*)(14.5, (getindex)(ˍ₋arg1
, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (geti
ndex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg
1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (geti
ndex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (geti
ndex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))),
 2)))), (getindex)(ˍ₋arg1, 6))
                        ˍ₋out[7] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
5.316666666666667, (getindex)(ˍ₋arg1, 7)), (*)(0.9666666666666667, (getinde
x)(ˍ₋arg1, 9))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 8))), (*)((+)(
(+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5
)), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (g
etindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), 
(/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8
)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)),
 (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex
)(ˍ₋arg1, 9)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 7)), (*
)(1.45, (getindex)(ˍ₋arg1, 9))), (*)(-7.25, (getindex)(ˍ₋arg1, 8))), (*)((+
)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 
8))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 
6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getind
ex)(ˍ₋arg1, 9)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getinde
x)(ˍ₋arg1, 5)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 6))), (*)(-5.316
666666666667, (getindex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋a
rg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 
2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6,
 (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋
arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))
), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), 
(/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 6)), (*)(-14.5, (getindex)(ˍ₋arg1, 
7))), (*)(-5.8, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ
₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(
ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(
ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6
)), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(
ˍ₋arg1, 5)), (*)(2.9, (getindex)(ˍ₋arg1, 7))), (*)(7.25, (getindex)(ˍ₋arg1,
 6))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg
1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (geti
ndex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(
ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)
), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1,
 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)
(ˍ₋arg1, 8)), (*)(5.8, (getindex)(ˍ₋arg1, 6))), (*)(14.5, (getindex)(ˍ₋arg1
, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋ar
g1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (get
index)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)
(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9
)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))),
 2)))), (getindex)(ˍ₋arg1, 7))
                        ˍ₋out[8] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-1.45, (getindex)(ˍ₋arg1, 6)), (*)(7.25, (getindex)(ˍ₋arg1, 7))), (*)(2.9, 
(getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (get
index)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 
7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)
(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (g
etindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (
getindex)(ˍ₋arg1, 9)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋ar
g1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3,
 (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)((+)((+)((
*)(5.8, (getindex)(ˍ₋arg1, 7)), (*)(-2.9, (getindex)(ˍ₋arg1, 9))), (*)(14.5
, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (g
etindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1
, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), 
(getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)),
 (getindex)(ˍ₋arg1, 9)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getinde
x)(ˍ₋arg1, 9)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex
)(ˍ₋arg1, 6)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 7))), (*)(-5.3166
66666666667, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getin
dex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)
)), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋a
rg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (g
etindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1
, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)))),
 (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 10)), (*)(-3.383333
3333333337, (getindex)(ˍ₋arg1, 9))), (*)(5.316666666666667, (getindex)(ˍ₋ar
g1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 
8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (ge
tindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((+)((
+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getinde
x)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1
, 10)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg
1, 9)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋
arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (/)((+)((+)((*)(2.9, (get
index)(ˍ₋arg1, 7)), (*)(-5.8, (getindex)(ˍ₋arg1, 9))), (*)(-14.5, (getindex
)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋
arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(
3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getinde
x)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)
((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (g
etindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(
ˍ₋arg1, 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 
9)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 10)), (*)(-2.9, 
(getindex)(ˍ₋arg1, 8))), (*)(-7.25, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/
)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)
((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (g
etindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (ge
tindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)),
 (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (ge
tindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ
₋arg1, 10)), 2))), 2)))), (getindex)(ˍ₋arg1, 8))
                        ˍ₋out[9] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 7)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 8))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)((+)
((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8
))), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 
8)), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1,
 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (g
etindex)(ˍ₋arg1, 7)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 
9)), (*)(-7.25, (getindex)(ˍ₋arg1, 10))), (*)(1.45, (getindex)(ˍ₋arg1, 11))
), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)
(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex
)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getinde
x)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 1
1)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋
arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (get
index)(ˍ₋arg1, 10)), (*)(5.8, (getindex)(ˍ₋arg1, 8))), (*)(14.5, (getindex)
(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getind
ex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋ar
g1, 10)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋ar
g1, 10)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)(0.96666666666
66667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋a
rg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋a
rg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2
))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋a
rg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10)
)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))
)), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 7)), (*)(2.9, (getindex)(ˍ₋ar
g1, 9))), (*)(7.25, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.6, (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋
arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (g
etindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (g
etindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋a
rg1, 11)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1,
 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (g
etindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋ar
g1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2
))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 8)), (*)(-5.8, (getinde
x)(ˍ₋arg1, 10))), (*)(-14.5, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)),
 (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex
)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex
)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), 
(getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (getindex)(ˍ₋
arg1, 9))
                        ˍ₋out[10] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(5.316666666666667, (getindex)(ˍ₋arg1, 10)), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 12))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 11))), (*)(
(+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2
))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋
arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg
1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋ar
g1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (/)((+)((+)((*)(-2.9, (geti
ndex)(ˍ₋arg1, 10)), (*)(1.45, (getindex)(ˍ₋arg1, 12))), (*)(-7.25, (getinde
x)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (get
index)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex
)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)),
 (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), 
(getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (
*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2)))), (/)(
(+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 9)), (*)(14.5, (getindex)(ˍ₋arg1, 10)))
, (*)(-2.9, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getinde
x)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋
arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)
), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)),
 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getin
dex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)
(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+)((*)(-1.45, 
(getindex)(ˍ₋arg1, 8)), (*)(2.9, (getindex)(ˍ₋arg1, 10))), (*)(7.25, (getin
dex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (ge
tindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10))
, (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(
0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))),
 (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ
₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*
)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)
((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 8)), (*)(3.383333333333333
7, (getindex)(ˍ₋arg1, 9))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 10))
), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 
11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)),
 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getin
dex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex
)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋ar
g1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)
(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(2.9, (g
etindex)(ˍ₋arg1, 9)), (*)(-14.5, (getindex)(ˍ₋arg1, 10))), (*)(-5.8, (getin
dex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (g
etindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getind
ex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)
), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11)))
, (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (get
index)(ˍ₋arg1, 11)), 2))), 2)))), (getindex)(ˍ₋arg1, 10))
                        ˍ₋out[11] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 9)), (*)(3.3833333333333337, (geti
ndex)(ˍ₋arg1, 10))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)(
(+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋a
rg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1
, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13))
, 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getin
dex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1,
 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))),
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ
₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)((+)((+)((*)(2.9, (get
index)(ˍ₋arg1, 10)), (*)(-5.8, (getindex)(ˍ₋arg1, 12))), (*)(-14.5, (getind
ex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex
)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10))
, (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), 
(getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 1
0)), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)),
 (getindex)(ˍ₋arg1, 12)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋ar
g1, 10)), (*)(-2.9, (getindex)(ˍ₋arg1, 12))), (*)(14.5, (getindex)(ˍ₋arg1, 
11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 1
3)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (g
etindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (get
index)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*
)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(
ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 12)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 13)), (
*)(-2.9, (getindex)(ˍ₋arg1, 11))), (*)(-7.25, (getindex)(ˍ₋arg1, 12))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 
(*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋
arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg
1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)
), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1
, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)
(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(0.966
6666666666667, (getindex)(ˍ₋arg1, 13)), (*)(-3.3833333333333337, (getindex)
(ˍ₋arg1, 12))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+
)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 
12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)
), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(
ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2)))
, 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1
, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (geti
ndex)(ˍ₋arg1, 9)), (*)(7.25, (getindex)(ˍ₋arg1, 10))), (*)(2.9, (getindex)(
ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ
₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*
)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10
)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+
)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (ge
tindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)),
 (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(
ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), 
(*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)))), (geti
ndex)(ˍ₋arg1, 11))
                        ˍ₋out[12] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 10)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 11))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 12))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getinde
x)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (get
index)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋ar
g1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getinde
x)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)((+)((+)((*)(-1.4
5, (getindex)(ˍ₋arg1, 10)), (*)(2.9, (getindex)(ˍ₋arg1, 12))), (*)(7.25, (g
etindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (ge
tindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋
arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)),
 (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))),
 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 11)), (*)(-5.8, (getindex)(
ˍ₋arg1, 13))), (*)(-14.5, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11
)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (g
etindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13)))
, (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (g
etindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (
/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 14)), (*)(-2.9, (getindex)(ˍ₋arg1, 
12))), (*)(-7.25, (getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋a
rg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)
(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getin
dex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4,
 (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)
(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 13)), 
(*)(5.8, (getindex)(ˍ₋arg1, 11))), (*)(14.5, (getindex)(ˍ₋arg1, 12))), (*)(
(+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋
arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getinde
x)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (geti
ndex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg
1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 1
3)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 14
)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 13))), (*)(5.31666666666666
7, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10))
, (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getinde
x)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋a
rg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 
2))), 2)))), (getindex)(ˍ₋arg1, 12))
                        ˍ₋out[13] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-2.9, (getindex)(ˍ₋arg1, 13)), (*)(-7.25, (getindex)(ˍ₋arg1, 14))), (*)(1.
45, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋ar
g1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋
arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 1
5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getind
ex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋
arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)),
 2))), 2))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 11)), 
(*)(3.3833333333333337, (getindex)(ˍ₋arg1, 12))), (*)(-5.316666666666667, (
getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 1
2)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1,
 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ
₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1,
 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2)))
, 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 11)), (*)(2.9, (getindex
)(ˍ₋arg1, 13))), (*)(7.25, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*
)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (geti
ndex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (
getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))
), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))
), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13))
, (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (
getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1
, 12)), (*)(-5.8, (getindex)(ˍ₋arg1, 14))), (*)(-14.5, (getindex)(ˍ₋arg1, 1
3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋a
rg1, 14)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(
ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12))
, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.3, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)
(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getin
dex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)
(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)
(ˍ₋arg1, 14)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 13))), (*)(0.96666
66666666667, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getinde
x)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 
13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋ar
g1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(
ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14))
, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (get
index)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋ar
g1, 15)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 14)), (*)(5
.8, (getindex)(ˍ₋arg1, 12))), (*)(14.5, (getindex)(ˍ₋arg1, 13))), (*)((+)((
+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1
, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋
arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)
(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 
2))), 2)))), (getindex)(ˍ₋arg1, 13))
                        ˍ₋out[14] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-2.9, (getindex)(ˍ₋arg1, 14)), (*)(1.45, (getindex)(ˍ₋arg1, 16))), (*)(-7.
25, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1
, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 1
6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getind
ex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋
arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)),
 2))), 2))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 14)), (*
)(0.9666666666666667, (getindex)(ˍ₋arg1, 16))), (*)(-3.3833333333333337, (g
etindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))
), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 
15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))),
 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 12)), (*)(7.25, (getindex
)(ˍ₋arg1, 13))), (*)(2.9, (getindex)(ˍ₋arg1, 14))), (*)((+)((+)((/)(0.3, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)
(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getin
dex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (g
etindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15)))
, (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)),
 (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (g
etindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1,
 13)), (*)(14.5, (getindex)(ˍ₋arg1, 14))), (*)(-2.9, (getindex)(ˍ₋arg1, 15)
)), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1
, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (get
index)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-
4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getinde
x)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 15)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ
₋arg1, 12)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 13))), (*)(-5.31666
6666666667, (getindex)(ˍ₋arg1, 14))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex
)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 1
4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg
1, 15)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ
₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)),
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (geti
ndex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg
1, 14)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 13)), (*)(-14
.5, (getindex)(ˍ₋arg1, 14))), (*)(-5.8, (getindex)(ˍ₋arg1, 15))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1
, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋
arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)
(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 
2))), 2)))), (getindex)(ˍ₋arg1, 14))
                        ˍ₋out[15] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(5.8, (getindex)(ˍ₋arg1, 14)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))), (*)(14.5
, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)),
 (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))),
 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2
))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))
), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)
(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)(1.45, (get
index)(ˍ₋arg1, 17)), (*)(-2.9, (getindex)(ˍ₋arg1, 15))), (*)(-7.25, (getind
ex)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getinde
x)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)
), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16))
, (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))
, (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 
16))), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (get
index)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)))
), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 13)), (*)(3.3833
333333333337, (getindex)(ˍ₋arg1, 14))), (*)(-5.316666666666667, (getindex)(
ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (
*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (g
etindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))
), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getinde
x)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)
), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (
/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 14)), (*)(-5.8, (getindex)(ˍ₋arg1, 1
6))), (*)(-14.5, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex
)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋ar
g1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(
ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)
(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(
ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))), (/)((+)((+
)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 17)), (*)(-3.3833333333333337,
 (getindex)(ˍ₋arg1, 16))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 15))),
 (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getinde
x)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg
1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (ge
tindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (geti
ndex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*
)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(
ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (get
index)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)
(-1.45, (getindex)(ˍ₋arg1, 13)), (*)(7.25, (getindex)(ˍ₋arg1, 14))), (*)(2.
9, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 
2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex
)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 
13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getinde
x)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 
2))), 2)))), (getindex)(ˍ₋arg1, 15))
                        ˍ₋out[16] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 14)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 15))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 16))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ
₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 1
5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getind
ex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (get
index)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋ar
g1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getinde
x)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)((+)((+)((*)(0.96
66666666666667, (getindex)(ˍ₋arg1, 18)), (*)(-3.3833333333333337, (getindex
)(ˍ₋arg1, 17))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 16))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋a
rg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)
(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋
arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (ge
tindex)(ˍ₋arg1, 17)), (*)(5.8, (getindex)(ˍ₋arg1, 15))), (*)(14.5, (getinde
x)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (g
etindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (geti
ndex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
6)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 
16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ
₋arg1, 14)), (*)(2.9, (getindex)(ˍ₋arg1, 16))), (*)(7.25, (getindex)(ˍ₋arg1
, 15))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(
ˍ₋arg1, 17)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋a
rg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(
-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), 
(*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (ge
tindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋a
rg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(
-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)
((+)((*)(1.45, (getindex)(ˍ₋arg1, 18)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))),
 (*)(-7.25, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋a
rg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 1
4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg
1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ
₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)),
 (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (geti
ndex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg
1, 18)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 15)), (*)(-5.
8, (getindex)(ˍ₋arg1, 17))), (*)(-14.5, (getindex)(ˍ₋arg1, 16))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1,
 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)
(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 
2))), 2)))), (getindex)(ˍ₋arg1, 16))
                        ˍ₋out[17] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 15)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 16))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 17))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ
₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 1
6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getind
ex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex
)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋ar
g1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getinde
x)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 18)), (*)(5.8, (getindex)(ˍ₋arg1, 16))), (*)(14.5, (ge
tindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (get
index)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 1
8))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1,
 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(0.966666666666
6667, (getindex)(ˍ₋arg1, 19)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 
18))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16
)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (g
etindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (geti
ndex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
7)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18)))
, (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ
₋arg1, 15)), (*)(2.9, (getindex)(ˍ₋arg1, 17))), (*)(7.25, (getindex)(ˍ₋arg1
, 16))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1,
 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, 
(getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (g
etindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getinde
x)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (ge
tindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋a
rg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(
-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (/)((+)
((+)((*)(2.9, (getindex)(ˍ₋arg1, 16)), (*)(-5.8, (getindex)(ˍ₋arg1, 18))), 
(*)(-14.5, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋ar
g1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15
)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1
, 18)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 
19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (
getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1
, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (get
index)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(
1.45, (getindex)(ˍ₋arg1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 17))), (*)(-7.2
5, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 
2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex
)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 
17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 
2))), 2)))), (getindex)(ˍ₋arg1, 17))
                        ˍ₋out[18] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 16)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 17))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 18))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19))
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 2
0)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex
)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋ar
g1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getinde
x)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 18)), (*)(-7.25, (getindex)(ˍ₋arg1, 19))), (*)(1.45, (
getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 1
7)), (getindex)(ˍ₋arg1, 19)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1,
 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋
arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1,
 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 19)), (*)(
5.316666666666667, (getindex)(ˍ₋arg1, 18))), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getind
ex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)
), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2)), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)
), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))
), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1
, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))
), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))
)), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 19)), (*)(5.8, (getindex)(ˍ₋ar
g1, 17))), (*)(14.5, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.3, (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (geti
ndex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(
ˍ₋arg1, 16)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getind
ex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (ge
tindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+
)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 16)), (*)(2.9, (getindex)(ˍ₋arg1, 18)))
, (*)(7.25, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 1
6)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg
1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ
₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)
(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg
1, 16)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 17)), (*)(-5.
8, (getindex)(ˍ₋arg1, 19))), (*)(-14.5, (getindex)(ˍ₋arg1, 18))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋ar
g1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 
2))), 2)))), (getindex)(ˍ₋arg1, 18))
                        ˍ₋out[19] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 17)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 18))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 19))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋ar
g1, 21)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 19)), (*)(1.45, (getindex)(ˍ₋arg1, 21))), (*)(-7.25, (
getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 1
8)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1,
 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋
arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19))
, (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2)))
, 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 19)), (*)(0.
9666666666666667, (getindex)(ˍ₋arg1, 21))), (*)(-3.3833333333333337, (getin
dex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)
), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)
), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1
, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (ge
tindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2))
)), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 17)), (*)(7.25, (getindex)(ˍ₋
arg1, 18))), (*)(2.9, (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((/)(0.1, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)
(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getin
dex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (g
etindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)
(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getin
dex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 18)
), (*)(14.5, (getindex)(ˍ₋arg1, 19))), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), 
(*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex
)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1
, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (
getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ
₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg
1, 20)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 18)), (*)(-14
.5, (getindex)(ˍ₋arg1, 19))), (*)(-5.8, (getindex)(ˍ₋arg1, 20))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋
arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 
2))), 2)))), (getindex)(ˍ₋arg1, 19))
                        ˍ₋out[20] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(5.8, (getindex)(ˍ₋arg1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 21))), (*)(14.5
, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 
20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))),
 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2
))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex
)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋
arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)((+)((+)((*)(1.45, (get
index)(ˍ₋arg1, 22)), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), (*)(-7.25, (getind
ex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21))
, (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2)))
, (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1,
 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21)))
, (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)))
), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 18)), (*)(7.25, (getindex)(ˍ₋a
rg1, 19))), (*)(2.9, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, 
(getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(
ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (ge
tindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)
(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getind
ex)(ˍ₋arg1, 18)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 19))), (*)(-5.
316666666666667, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (get
index)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋ar
g1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(
ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getind
ex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, 
(getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(
ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 19)), (*
)(-5.8, (getindex)(ˍ₋arg1, 21))), (*)(-14.5, (getindex)(ˍ₋arg1, 20))), (*)(
(+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getinde
x)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ
₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getinde
x)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (geti
ndex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg
1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 2
1)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 2
1)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 22))), (*)(5.31666666666666
7, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1,
 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getinde
x)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋a
rg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 
2))), 2)))), (getindex)(ˍ₋arg1, 20))
                        ˍ₋out[21] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-2.9, (getindex)(ˍ₋arg1, 21)), (*)(-7.25, (getindex)(ˍ₋arg1, 22))), (*)(1.
45, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋ar
g1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1,
 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 2
3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋
arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)),
 2))), 2))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 21)), (*
)(-3.3833333333333337, (getindex)(ˍ₋arg1, 22))), (*)(0.9666666666666667, (g
etindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋
arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 
22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))),
 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 19)), (*)(2.9, (getindex)
(ˍ₋arg1, 21))), (*)(7.25, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22)))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (g
etindex)(ˍ₋arg1, 19)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 20))), (*
)(-5.316666666666667, (getindex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)
(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)
), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), 
(getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getin
dex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (g
etindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), 
(getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getin
dex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 20)
), (*)(-14.5, (getindex)(ˍ₋arg1, 21))), (*)(-5.8, (getindex)(ˍ₋arg1, 22))),
 (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getind
ex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 
22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (get
index)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, 
(getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(
ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 22)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 22)), (*)(5
.8, (getindex)(ˍ₋arg1, 20))), (*)(14.5, (getindex)(ˍ₋arg1, 21))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋a
rg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)
(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 
2))), 2)))), (getindex)(ˍ₋arg1, 21))
                        ˍ₋out[22] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 20)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 21))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 22))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23))
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getinde
x)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex
)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋ar
g1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2
))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getinde
x)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)((+)((+)((*)(0.96
66666666666667, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (getindex)(
ˍ₋arg1, 22))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1,
 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 2
0)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2
))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋a
rg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (g
etindex)(ˍ₋arg1, 20)), (*)(7.25, (getindex)(ˍ₋arg1, 21))), (*)(2.9, (getind
ex)(ˍ₋arg1, 22))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getinde
x)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22))
, (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (
^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22)))
, (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1,
 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1,
 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2)))
), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 21)), (*)(14.5, (getindex)(ˍ₋arg
1, 22))), (*)(-2.9, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getin
dex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ
₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(
3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (get
index)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getinde
x)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
2)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+)
((+)((*)(1.45, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getindex)(ˍ₋arg1, 22))),
 (*)(-7.25, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 2
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg
1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1,
 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, 
(getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg
1, 24)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 21)), (*)(-14
.5, (getindex)(ˍ₋arg1, 22))), (*)(-5.8, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋a
rg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋ar
g1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (get
index)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 
2))), 2)))), (getindex)(ˍ₋arg1, 22))
                        ˍ₋out[23] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-3.3833333333333337, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (geti
ndex)(ˍ₋arg1, 23))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 25))), (*)(
(+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getinde
x)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ
₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋ar
g1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25
)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg
1, 24)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex
)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)((+)((+)((*)(-1.45
, (getindex)(ˍ₋arg1, 21)), (*)(7.25, (getindex)(ˍ₋arg1, 22))), (*)(2.9, (ge
tindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23)))
, (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 2
4))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋a
rg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 2
3))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 
2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 23)), (*)(-7.25, (getindex)
(ˍ₋arg1, 24))), (*)(1.45, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*
)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getin
dex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (g
etindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (get
index)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24
)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (g
etindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (g
etindex)(ˍ₋arg1, 21)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 22))), (*
)(-5.316666666666667, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3,
 (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)
(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getinde
x)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23))
, (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*
)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getin
dex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 22)
), (*)(-5.8, (getindex)(ˍ₋arg1, 24))), (*)(-14.5, (getindex)(ˍ₋arg1, 23))),
 (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (ge
tindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 2
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg
1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (ge
tindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (geti
ndex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(
ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋ar
g1, 24)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 24)), (*)(5
.8, (getindex)(ˍ₋arg1, 22))), (*)(14.5, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋
arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1
, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 2
3)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2
))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 
2))), 2)))), (getindex)(ˍ₋arg1, 23))
                        ˍ₋out[24] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 22)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 23))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 24))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ
₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 2
6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋ar
g1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getinde
x)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 24)), (*)(1.45, (getindex)(ˍ₋arg1, 26))), (*)(-7.25, (
getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (g
etindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1,
 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ
₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2)))
, 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 23)), (*)(14.5, (getindex)
(ˍ₋arg1, 24))), (*)(-2.9, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), 
(getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getin
dex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex
)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)),
 (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (g
etindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (
/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 22)), (*)(2.9, (getindex)(ˍ₋arg1, 
24))), (*)(7.25, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex
)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋ar
g1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1,
 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, 
(getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getind
ex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (geti
ndex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(
ˍ₋arg1, 22)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 23)), (*
)(-14.5, (getindex)(ˍ₋arg1, 24))), (*)(-5.8, (getindex)(ˍ₋arg1, 25))), (*)(
(+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋
arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋ar
g1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26
)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg
1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 2
5)), 2))), 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 24)
), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 26))), (*)(-3.383333333333333
7, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22))
, (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2)))
, 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋a
rg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getinde
x)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 
24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 
2))), 2)))), (getindex)(ˍ₋arg1, 24))
                        ˍ₋out[25] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-1.45, (getindex)(ˍ₋arg1, 23)), (*)(7.25, (getindex)(ˍ₋arg1, 24))), (*)(2.
9, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1,
 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg
1, 26))), var"(u(t))[29]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (g
etindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/
)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getindex)(ˍ₋arg1, 26
))), (*)(14.5, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getin
dex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1
, 25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋
arg1, 26)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (get
index)(ˍ₋arg1, 26))), var"(u(t))[29]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666
666666667, (getindex)(ˍ₋arg1, 23)), (*)(3.3833333333333337, (getindex)(ˍ₋ar
g1, 24))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), var"
(u(t))[29]"), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getinde
x)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
4)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (ge
tindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)
(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getind
ex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 24))
, (*)(-5.8, (getindex)(ˍ₋arg1, 26))), (*)(-14.5, (getindex)(ˍ₋arg1, 25))), 
(*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg
1, 26))), var"(u(t))[29]"), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 2
5))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 
2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))),
 2)))), (/)((+)((+)((*)(1.45, var"(u(t))[29]"), (*)(-2.9, (getindex)(ˍ₋arg1
, 25))), (*)(-7.25, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getin
dex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), var"(u(t))[29]"), 2
))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getin
dex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)
(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1,
 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (geti
ndex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg
1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), var"(u(t))[29]"), 2))), 2))))
, (/)((+)((+)((*)(0.9666666666666667, var"(u(t))[29]"), (*)(-3.383333333333
3337, (getindex)(ˍ₋arg1, 26))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 2
5))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋ar
g1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (g
etindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)), (/)(0.6, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(
ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25))
, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), 
(getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), var"(u(t))[29
]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 2
6))), var"(u(t))[29]"), 2))), 2)))), (getindex)(ˍ₋arg1, 25))
                        ˍ₋out[26] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 24)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 25))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 26))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[
29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2)), (
/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24
)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")),
 (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[
29]"), (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 28)), 2))), 2))), (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4,
 (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)
(ˍ₋arg1, 26)), 2))), 2))), (/)((+)((+)((*)(-2.9, var"(u(t))[29]"), (*)(5.8,
 (getindex)(ˍ₋arg1, 25))), (*)(14.5, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)(
(/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 2
4)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25))
, var"(u(t))[29]"), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")), (getinde
x)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[29]"), (g
etindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 28)), 2))), 2))), (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋
arg1, 25)), var"(u(t))[29]"), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex
)(ˍ₋arg1, 24)), (*)(2.9, (getindex)(ˍ₋arg1, 26))), (*)(7.25, (getindex)(ˍ₋a
rg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex
)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25
)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ
₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)),
 (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2))), (/)(0.1, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var
"(u(t))[29]")), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 28)), 2))
), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 2
4)), (getindex)(ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)
(ˍ₋arg1, 28)), (*)(-2.9, (getindex)(ˍ₋arg1, 26))), (*)(-7.25, var"(u(t))[29
]")), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, va
r"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))
), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ
₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t)
)[29]")), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, va
r"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 28)), 2))), 2))
), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26))
, (*)(-4, var"(u(t))[29]")), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋ar
g1, 28)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 25)), (*)(-5
.8, var"(u(t))[29]")), (*)(-14.5, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (geti
ndex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"), 2))), 2)), (/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-
4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getinde
x)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")), (getindex)(
ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[29]"), (geti
ndex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 28)), 2))), 2))), (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2)))
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg
1, 25)), var"(u(t))[29]"), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337
, var"(u(t))[29]"), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 28))), (*)(5
.316666666666667, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.3, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (ge
tindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋a
rg1, 26)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), var"(u(t))[29]"),
 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")), (getindex)(ˍ₋arg1, 28)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[29]"), (getindex)(ˍ₋arg1, 26
)), (getindex)(ˍ₋arg1, 28)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, var"(u(t))[29]")), (getinde
x)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[29]"), (g
etindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 28)), 2))), 2)))), (getindex)(ˍ₋a
rg1, 26))
                        ˍ₋out[27] = (+)((+)((+)((+)((+)((*)(0.2, var"(u(t))
[1]"), (*)(-0.2, (getindex)(ˍ₋arg1, 4))), (*)(-1, (getindex)(ˍ₋arg1, 27))),
 (*)(2.0, (getindex)(ˍ₋arg1, 1))), (*)(-2.0, (getindex)(ˍ₋arg1, 2))), (geti
ndex)(ˍ₋arg1, 3))
                        ˍ₋out[28] = (+)((+)((+)((+)((+)((*)(-0.2, (getindex
)(ˍ₋arg1, 23)), (*)(-1, var"(u(t))[29]")), (*)(0.2, (getindex)(ˍ₋arg1, 28))
), (*)(-2.0, (getindex)(ˍ₋arg1, 25))), (*)(2.0, (getindex)(ˍ₋arg1, 26))), (
getindex)(ˍ₋arg1, 24))
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), [1.0 0.0 … 0.0 0.0; 0.0 1.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.
0 … 0.0 0.0], nothing, nothing, nothing, nothing, nothing, nothing, nothing
, nothing, nothing, nothing, [Symbol("getindex(u(t), 3)"), Symbol("getindex
(u(t), 4)"), Symbol("getindex(u(t), 5)"), Symbol("getindex(u(t), 6)"), Symb
ol("getindex(u(t), 7)"), Symbol("getindex(u(t), 8)"), Symbol("getindex(u(t)
, 9)"), Symbol("getindex(u(t), 10)"), Symbol("getindex(u(t), 11)"), Symbol(
"getindex(u(t), 12)")  …  Symbol("getindex(u(t), 21)"), Symbol("getindex(u(
t), 22)"), Symbol("getindex(u(t), 23)"), Symbol("getindex(u(t), 24)"), Symb
ol("getindex(u(t), 25)"), Symbol("getindex(u(t), 26)"), Symbol("getindex(u(
t), 27)"), Symbol("getindex(u(t), 28)"), Symbol("getindex(u(t), 2)"), Symbo
l("getindex(u(t), 30)")], :t, nothing, ModelingToolkit.var"#472#generated_o
bserved#471"{Bool, ModelingToolkit.ODESystem, Dict{Any, Any}}(false, Core.B
ox(Symbolics.Equation[(u(t))[29] ~ -0.017241379310344827 / (1 + t) + 0.25(u
(t))[28] + 0.75(u(t))[30], (u(t))[1] ~ -0.022988505747126436 / (1 + t) + 1.
3333333333333333(u(t))[2] - 0.3333333333333333(u(t))[3]]), ModelingToolkit.
ODESystem(Symbolics.Equation[Differential(t)((u(t))[3]) ~ ((3.3833333333333
337(u(t))[2] - 0.9666666666666667(u(t))[1] - 5.316666666666667(u(t))[3]) / 
((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//
4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3]
)^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))
[1] - 4(u(t))[2])^2))^2)) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) /
 ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1/
/4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3
])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))
[3])^2))^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1
.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t)
)[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2]
 - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12
)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t
))[4])^2))^2)) + (2.9(u(t))[3] + 7.25(u(t))[2] - 1.45(u(t))[1]) / ((0.3 / (
(1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(
t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//
12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u
(t))[2])^2))^2)) + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(t))[5
] - 3.3833333333333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] 
+ (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(
((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2
(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])
^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[2
] - 14.5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1]
 + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*
(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 
2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12
)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)))*(u(t))[3], Differential(t)
((u(t))[4]) ~ ((7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1
.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t)
)[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3]
 - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12
)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t
))[3])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((
1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t
))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3
] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//1
2)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)
) + (3.3833333333333337(u(t))[3] - 0.9666666666666667(u(t))[2] - 5.31666666
6666667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2
(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u
(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t)
)[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*(
(3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (0.9666666666666667(u(t))[6
] + 5.316666666666667(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((1
.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t)
)[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3]
 - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12
)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t
))[5])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((
1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t
))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3
] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//1
2)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)
) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13
//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t
))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5
])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[
4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t)
)[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^
2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((0.9666666666666667(u(t))[7] 
+ 5.316666666666667(u(t))[5] - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6]
 - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 
4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.
1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*(
(3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))
[6])^2))^2)) + (3.3833333333333337(u(t))[4] - 0.9666666666666667(u(t))[3] -
 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(
t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t
))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) 
+ (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 
14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(
t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u
(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(
t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*((
(u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4]
 - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) +
 (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u
(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*
(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[
5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 
4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u
(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2)
)^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)
*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))
[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] -
 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] +
 (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (
u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2
))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4]
 + (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~
 ((3.3833333333333337(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.3166666666
66667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(
t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[
8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)
)*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*((
(u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6]
 - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u
(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(
t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))
[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2
))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (
u(t))[7] - 2(u(t))[6])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))
[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) 
+ (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u
(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t)
)[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 
+ (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.316666666666667(u(t))[6] + 0.96666666
66666667(u(t))[8] - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])
^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6]
 + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[
8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)
) + (2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t)
)[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5
])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[
6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t)
)[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^
2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t
))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[
5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.
0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t)
)[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6
], Differential(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.966666666
6666667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7]
)^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2
) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] +
 (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7
] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) 
+ (0.9666666666666667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.38333333333
33337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (
13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t
))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[
9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)
)*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*((
(u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7]
 - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) +
 (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u
(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t)
)[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*(
(3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[
7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) 
+ (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (
u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(
t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))
^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t)
)[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*((
(u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(
u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t
))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6
 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.
6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + 
(u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(
t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) +
 (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((
3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] 
- 2(u(t))[8])^2))^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ ((3.38333333
33333337(u(t))[7] - 0.9666666666666667(u(t))[6] - 5.316666666666667(u(t))[8
]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) 
+ (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + 
(1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (
u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t)
)[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 
+ (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2)) + (7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t
))[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])
^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] -
 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(
u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0
e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[
6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.31
6666666666667(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + 
(u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(
t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u
(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] +
 (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9
])^2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.
0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t)
)[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t)
)[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//1
2)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(
u(t))[9])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3
(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2
(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (
13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2
))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] +
 (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u
(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((
u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - 
(u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(
t))[8], Differential(t)((u(t))[9]) ~ ((5.316666666666667(u(t))[9] + 0.96666
66666666667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (
u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(
t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(
((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(
t))[10])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*
((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9]
 - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2
) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(
t))[11] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[8] - 0.966666666
6666667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))
[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[
7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))
[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(
t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2)
)^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] 
+ (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] +
 (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*
(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8
] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)
) + (2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t
))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))
[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u
(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] +
 (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8]
)^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] 
+ (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))
[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//
12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2)
)^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((7.25(u(t))[9] + 2.9(u(t))
[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10
] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (
1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(
u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9
])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (5.8(u(t))
[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u
(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u
(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[1
1])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (3.3833
333333333337(u(t))[9] - 0.9666666666666667(u(t))[8] - 5.316666666666667(u(t
))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9]
)^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[1
2] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)
*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (0.9666666666666667(u(t)
)[12] + 5.316666666666667(u(t))[10] - 3.3833333333333337(u(t))[11]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*(
(3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[
12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11
])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10
] + (u(t))[12] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.
5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t
))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t
))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t)
)[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] 
- 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 
2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] 
+ (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t)
)[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])
^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10],
 Differential(t)((u(t))[11]) ~ ((3.3833333333333337(u(t))[10] - 0.966666666
6666667(u(t))[9] - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t
))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))
[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*
(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4
(u(t))[10])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1/
/4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u
(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u
(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((
1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((
u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))
[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12]
)^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u
(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] 
- 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (1
3//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.31666666666666
7(u(t))[11] + 0.9666666666666667(u(t))[13] - 3.3833333333333337(u(t))[12]) 
/ ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t
))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] 
- 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] 
- 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*
(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[11] + 7.25(u(
t))[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[
12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(
((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[
9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(
u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (
2.9(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t
))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))
[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*
(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2
))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ ((5.316666666666667(u(t))
[12] + 0.9666666666666667(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] 
+ (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10]
 + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t
))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(
t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.
0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(
t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[1
2] - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])
^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(
t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u
(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14]
 - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u
(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (
5.8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t
))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(
t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1
 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)
*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])
^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t)
)[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t
))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])
^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13]
)^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12]
 + (u(t))[10] - 4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[11] - 0.96
66666666666667(u(t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13]
 - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12
] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) 
+ (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u
(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t
))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12
)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(
t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u
(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(
t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Differential(t)
((u(t))[21]) ~ ((3.3833333333333337(u(t))[20] - 0.9666666666666667(u(t))[19
] - 5.316666666666667(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] -
 (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (1
3//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] 
+ (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t)
)[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])
^2))^2)) + (1.45(u(t))[23] - 2.9(u(t))[21] - 7.25(u(t))[22]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t)
)[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t)
)[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])
^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22]
)^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21]
 + (u(t))[23] - 4(u(t))[22])^2))^2)) + (5.316666666666667(u(t))[21] + 0.966
6666666666667(u(t))[23] - 3.3833333333333337(u(t))[22]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[2
1] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20
] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^
2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) +
 (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u
(t))[23] - 4(u(t))[22])^2))^2)) + (7.25(u(t))[20] + 2.9(u(t))[21] - 1.45(u(
t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[
22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u
(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u
(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[2
0])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) 
+ (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (5.8(u(t))[20
] + 14.5(u(t))[21] - 2.9(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[
21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(
u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) +
 (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[1
9] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(
t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (
2.9(u(t))[20] - 14.5(u(t))[21] - 5.8(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t
))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t
))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)
*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])
^2))^2)))*(u(t))[21], Differential(t)((u(t))[22]) ~ ((5.8(u(t))[21] + 14.5(
u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t
))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)
*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t
))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^
2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (1.45(u(t)
)[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] 
- 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^
2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t
))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] 
+ (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t
))[23])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12
)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t
))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.
0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(
t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (3.3833333333333337(u(t))[21]
 - 0.9666666666666667(u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((
u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23
])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 
+ (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[2
0] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 1
4.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u
(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21
] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22
] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u
(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12
)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (0.9666666666666667(u(
t))[24] + 5.316666666666667(u(t))[22] - 3.3833333333333337(u(t))[23]) / ((0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//
12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u
(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u
(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((
1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((
u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], Differential(t)(
(u(t))[23]) ~ ((1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (
u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + 
(u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[
22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[
24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-
6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))
[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.316666666666667(u(t))[23] + 0
.9666666666666667(u(t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))
[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t)
)[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^
2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^
2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] 
+ (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.4
5(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (1
3//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] 
+ (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] 
+ (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22]
)^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (3.383333
3333333337(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.316666666666667(u(t
))[23]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12
)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(
t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(
t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) 
+ (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (2.9(u(t))[22]
 - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22]
 - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) +
 (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23
] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t
))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5
.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)
*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^
2))^2)))*(u(t))[23], Differential(t)((u(t))[24]) ~ ((3.3833333333333337(u(t
))[23] - 0.9666666666666667(u(t))[22] - 5.316666666666667(u(t))[24]) / ((0.
6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23]
 + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24
] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(
t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u
(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u
(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[26
] + 5.316666666666667(u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / (
(1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3
(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[
22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[2
5])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[
24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] -
 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 
2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1
//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2
(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))
[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(
u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(
((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[
26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))
[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*((
(u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2
3] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))
^2)) + (1.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6
 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25
] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))
^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2)
 + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (
u(t))[26] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(
t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//1
2)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u
(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (
u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[2
3])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u
(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t))[24], Differential(t)((
u(t))[25]) ~ ((5.316666666666667(u(t))[25] + 0.9666666666666667(u(t))[27] -
 3.3833333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + 
(u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))
[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t)
)[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + 
(u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))
[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2
))^2)) + (7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t)
)[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] -
 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2
) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] +
 (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25
(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t)
)[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] +
 (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] 
+ (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t)
)[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])
^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.3833333
333333337(u(t))[24] - 0.9666666666666667(u(t))[23] - 5.316666666666667(u(t)
)[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24]
)^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t
))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(
t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26]
)^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + 
(13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[24] 
- 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25]
 + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(
t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (
13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25]
 + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t)
)[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (5.
8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t)
)[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*
(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2
))^2)))*(u(t))[25], Differential(t)((u(t))[26]) ~ ((3.3833333333333337(u(t)
)[25] - 0.9666666666666667(u(t))[24] - 5.316666666666667(u(t))[26]) / ((0.1
 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)
*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(
t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t
))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.
0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(
t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[2
6] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26
] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) 
+ (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27]
 - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u
(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (
5.8(u(t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(
t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u
(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12
)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])
^2))^2)) + (2.9(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.
0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(
t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28]
 - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])
^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26]
 + (u(t))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.
8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(
t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)
*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t
))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*
(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.316666666666667(u(t))
[26] + 0.9666666666666667(u(t))[28] - 3.3833333333333337(u(t))[27]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)
*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(
t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t
))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.
0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(
t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)))*(u(t))[26], Differential(t)((u
(t))[27]) ~ ((7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((
u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27
])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[2
8])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 
+ (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[2
5] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 
2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u
(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26
] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
7] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u
(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12
)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (3.3833333333333337(u(
t))[26] - 0.9666666666666667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((0
.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//
4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u
(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((
1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((
u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[
28] - 14.5(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[2
9] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))
^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) 
+ (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28
] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[29]
 - 2.9(u(t))[27] - 7.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2
7] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u
(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u
(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26
] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u
(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28
])^2))^2)) + (0.9666666666666667(u(t))[29] + 5.316666666666667(u(t))[27] - 
3.3833333333333337(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (
u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[
26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//
12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (
u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[
29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2)
)^2)))*(u(t))[27], Differential(t)((u(t))[28]) ~ ((3.3833333333333337(u(t))
[27] - 0.9666666666666667(u(t))[26] - 5.316666666666667(u(t))[28]) / ((0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] +
 (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] +
 (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t)
)[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t)
)[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0
e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t
))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28
] - 2.9(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] -
 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t)
)[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] -
 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13
//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (2.9(u(t))[28] + 7
.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] +
 (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t)
)[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13
//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] +
 (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))
[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^
2))^2)) + (1.45(u(t))[30] - 2.9(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))
[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))
[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^
2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^
2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] 
+ (u(t))[30] - 2(u(t))[29])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5
(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13
//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] +
 (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] +
 (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t)
)[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(
((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (0.9666666666666667(u(t))
[30] + 5.316666666666667(u(t))[28] - 3.3833333333333337(u(t))[29]) / ((0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)
*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t)
)[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t)
)[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0
e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t
))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)))*(u(t))[28], 0 ~ 0.2(u(t))[1] + 
2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - (u(t))[2] - 2.0(u(t))[4], 0 ~ 0.2
(u(t))[30] + 2.0(u(t))[28] + (u(t))[26] - 0.2(u(t))[25] - (u(t))[29] - 2.0(
u(t))[27]], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[3], (u(t))[4], (u(t
))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11], 
(u(t))[12]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], 
(u(t))[26], (u(t))[27], (u(t))[28], (u(t))[2], (u(t))[30]], Any[], Dict{Any
, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[29] ~ -0.0172413793103
44827 / (1 + t) + 0.25(u(t))[28] + 0.75(u(t))[30], (u(t))[1] ~ -0.022988505
747126436 / (1 + t) + 1.3333333333333333(u(t))[2] - 0.3333333333333333(u(t)
)[3]], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue
{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbol
ics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symboli
cs.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolic
s.Num}(undef, 0, 0)), :pdesys2, ModelingToolkit.ODESystem[], Dict{Any, Any}
((u(t))[17] => 0.5517241379310345, (u(t))[18] => 0.5862068965517241, (u(t))
[8] => 0.2413793103448276, (u(t))[10] => 0.3103448275862069, (u(t))[27] => 
0.896551724137931, (u(t))[28] => 0.9310344827586207, (u(t))[2] => 0.0344827
58620689655, (u(t))[24] => 0.7931034482758621, (u(t))[30] => 1.0, (u(t))[21
] => 0.6896551724137931…), nothing, nothing, nothing, ModelingToolkit.Symbo
licContinuousCallback[ModelingToolkit.SymbolicContinuousCallback(Symbolics.
Equation[], Symbolics.Equation[])], ModelingToolkit.SymbolicDiscreteCallbac
k[], MethodOfLines.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 
1, MethodOfLines.CenterAlignedGrid}, MethodOfLines.MOLFiniteDifference{Meth
odOfLines.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretization}, Model
ingToolkit.PDESystem, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretiz
ation}(MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}(M
ethodOfLines.VariableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.Immutab
leDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDi
ct{DataType, Any}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20
.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, V
ector{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t,
 x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dic
t{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1
), Dict{Int64, SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(
1 => x)), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}},
 Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))
[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  
(u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(
t))[27], (u(t))[28], (u(t))[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real,
 Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecis
ion{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620
689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}
}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{
Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sy
m{Real, Base.ImmutableDict{DataType, Any}}, Float64}(x => 0.034482758620689
655), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Car
tesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30
,))), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Car
tesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30
,)))), MethodOfLines.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid, M
ethodOfLines.ScalarizedDiscretization}(Dict{Symbolics.Num, Int64}(x => 30),
 t, 2, MethodOfLines.WENOScheme(1.0e-6), MethodOfLines.CenterAlignedGrid(),
 true, false, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, 
Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Sy
mbolics.Equation[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)
) ~ 0], Symbolics.Equation[u(0, x) ~ x, Differential(x)(u(t, 0.0)) ~ 1 / (1
 + t), Differential(x)(u(t, 1.0)) ~ 1 / (1 + t)], Symbolics.VarDomainPairin
g[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0
.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullParam
eters(), Dict{Any, Any}(), nothing, Any[], :pdesys2, nothing), false, Base.
RefValue{Any}(nothing)), ModelingToolkit.SystemStructures.TearingState{Mode
lingToolkit.ODESystem}(ModelingToolkit.ODESystem(Symbolics.Equation[Differe
ntial(t)((u(t))[3]) ~ ((3.3833333333333337(u(t))[2] - 0.9666666666666667(u(
t))[1] - 5.316666666666667(u(t))[3]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))
[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t)
)[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//1
2)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5]
 - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t)
)[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2)) + (5.8(u(t
))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t
))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//
12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5
] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13
//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (1.45(u(t))[5] - 2.9(
u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t)
)[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))
[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3]
 + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[
4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[3] + 7.2
5(u(t))[2] - 1.45(u(t))[1]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(
t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t
))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t)
)[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) 
+ (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2)) + (5.31666666666666
7(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.3833333333333337(u(t))[4]) / (
(0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4
)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])
^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2)
 + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)
*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[
5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[2] - 14.5(u(t))[3] - 5.8(u(t))[4]) / 
((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//
4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3]
)^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4
)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[
3])^2))^2)))*(u(t))[3], Differential(t)((u(t))[4]) ~ ((7.25(u(t))[3] + 2.9(
u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t)
)[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))
[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4]
 + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + 
(1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (5.8(u(t))[3] + 14.
5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t
))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4
] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))
[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(
t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (3.3833333333333337(u(t))[3] - 0
.9666666666666667(u(t))[2] - 5.316666666666667(u(t))[4]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] 
+ (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u
(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((
u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] 
+ (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3]
)^2))^2)) + (0.9666666666666667(u(t))[6] + 5.316666666666667(u(t))[4] - 3.3
833333333333337(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t)
)[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))
[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4]
 + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[3] - 5.8
(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t
))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4
] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))
[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(
t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 
7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(
t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6
] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((
u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[4], Differential(t)((u(t
))[5]) ~ ((0.9666666666666667(u(t))[7] + 5.316666666666667(u(t))[5] - 3.383
3333333333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6]
)^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3
] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1
//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (3.3833333333333337(u
(t))[4] - 0.9666666666666667(u(t))[3] - 5.316666666666667(u(t))[5]) / ((0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(
((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + 
(1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] -
 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.
6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(
t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) +
 (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^
2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6
 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 
2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u
(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(
u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] +
 (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4]
)^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3
] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - 
(u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((
3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[
6])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[
3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] -
 (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*(
(3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4]
 - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)))*
(u(t))[5], Differential(t)((u(t))[6]) ~ ((3.3833333333333337(u(t))[5] - 0.9
666666666666667(u(t))[4] - 5.316666666666667(u(t))[6]) / ((0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t
))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(
t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (
u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^
2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] +
 (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(
t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u
(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (
u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)) + (1.
45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] -
 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) +
 (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 
4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (
5.316666666666667(u(t))[6] + 0.9666666666666667(u(t))[8] - 3.38333333333333
37(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13/
/12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[
6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] 
- 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(
t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[6] + 7.25(u(t))[5] - 
1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (1
3//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t)
)[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8
] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((
u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] 
- 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[
8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u
(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], Differential(t)((u(t))[7]) ~ ((3.
3833333333333337(u(t))[6] - 0.9666666666666667(u(t))[5] - 5.316666666666667
(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//1
2)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9]
 - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t)
)[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (0.9666666666666667(u(t))[9] + 5.3
16666666666667(u(t))[7] - 3.3833333333333337(u(t))[8]) / ((0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(
u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(
t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(
t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (
u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^
2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6
 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(
u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((
u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6]
)^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-
6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(
u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3
(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] -
 (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (
5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2)
 + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + 
(1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (
u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2
) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[9]
 - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - 
(u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(
((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((
u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4
(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))[7], Di
fferential(t)((u(t))[8]) ~ ((3.3833333333333337(u(t))[7] - 0.96666666666666
67(u(t))[6] - 5.316666666666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((
u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] -
 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(
u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u
(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 
4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (
7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//12)
*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[1
0] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^
2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6
 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] 
+ (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6
] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))
 + (0.9666666666666667(u(t))[10] + 5.316666666666667(u(t))[8] - 3.383333333
3333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 
2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + 
(u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(
t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2)
)^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4
)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (1.45(u(t))[10] - 2.9(u
(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))
[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (1
3//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))
[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) 
+ (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (2.9(u(t))[7] - 
5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (
u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])
^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2)
 + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(
u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[
8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] -
 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u
(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2
))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7]
 + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))[8], Differential(t)((u(t))[9]) ~
 ((5.316666666666667(u(t))[9] + 0.9666666666666667(u(t))[11] - 3.3833333333
333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(
u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*(
(3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + 
(1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (1.45(u(t))[11] -
 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[
10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8]
)^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10
] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(
t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (3.
3833333333333337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.316666666666667
(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))
[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(
t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(
((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9
] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] -
 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//1
2)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t
))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[9] + 7.25(u(t))[8] - 
1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t
))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(
u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//1
2)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t
))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7]
 - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1/
/4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t
))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)))*(u(t))[9], Differential(t)((u
(t))[10]) ~ ((7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.
0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t)
)[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))
[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4
(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) +
 (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//1
2)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t)
)[8] - 4(u(t))[9])^2))^2)) + (5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[11]
) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) +
 (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] 
+ (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - 
(u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*(
(1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t
))[11] - 2(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[9] - 0.9666666666
666667(u(t))[8] - 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12
)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))
[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11]
)^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(
t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))
[9])^2))^2)) + (0.9666666666666667(u(t))[12] + 5.316666666666667(u(t))[10] 
- 3.3833333333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] +
 (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9
])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[1
1])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t)
)[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)
) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (
u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t)
)[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*(
(3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))
^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10
] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - 
(u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1/
/4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[
12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Differential(t)((u(t))[11]) ~ ((3.3
833333333333337(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.316666666666667
(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t)
)[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (
u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (
u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[
12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2)
 + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (1.45(u(t))[13
] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[
9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(
t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (
13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11]
 + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t
))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12]
)^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t)
)[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t)
)[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])
^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])
^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2
(u(t))[11])^2))^2)) + (5.316666666666667(u(t))[11] + 0.9666666666666667(u(t
))[13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))
[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2
))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2
) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))
[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (
u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[
12])^2))^2)) + (2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u
(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u
(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[1
2])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[1
0])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11]
 + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[12] - 14.5
(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t)
)[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (
u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (
u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[
12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((
u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)))*(u(t))[11], Differential(t)(
(u(t))[12]) ~ ((5.316666666666667(u(t))[12] + 0.9666666666666667(u(t))[14] 
- 3.3833333333333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - 
(u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1
//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] +
 (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t)
)[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^
2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))
[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t)
)[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])
^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] 
+ (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9
(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13
//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] +
 (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] 
+ (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t)
)[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(
((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t
))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[
13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((
3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))
[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] -
 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2))
 + (3.3833333333333337(u(t))[11] - 0.9666666666666667(u(t))[10] - 5.3166666
66666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^
2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0
e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t
))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(
t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] 
- 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(
t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (2
.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t)
)[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t
))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*
((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^
2))^2)))*(u(t))[12]  …  Differential(t)((u(t))[21]) ~ ((3.3833333333333337(
u(t))[20] - 0.9666666666666667(u(t))[19] - 5.316666666666667(u(t))[21]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[
20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2
(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 
2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(
((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (1.45(u(t))[23] - 2.9(u(t
))[21] - 7.25(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[
22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(
((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))
[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] -
 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))
 + (5.316666666666667(u(t))[21] + 0.9666666666666667(u(t))[23] - 3.38333333
33333337(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23]
 - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t
))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] 
- 2(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(
t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2)) + (7
.25(u(t))[20] + 2.9(u(t))[21] - 1.45(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(
t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t
))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12
)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21]
 - 2(u(t))[20])^2))^2)) + (5.8(u(t))[20] + 14.5(u(t))[21] - 2.9(u(t))[22]) 
/ ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) +
 (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] 
- 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] 
- 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2
))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] 
+ (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[20] - 14.5(u(t))[21] - 5.8
(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13
//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] +
 (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] 
+ (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t)
)[22])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(
((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)))*(u(t))[21], Differential(t
)((u(t))[22]) ~ ((5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*
(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))
[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))
[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e
-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[
23] - 2(u(t))[22])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] - 7.25(u(t))[2
3]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2
) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[
23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[
24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13
//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (7.25(u(t))[21] + 
2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] +
 (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t)
)[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13
//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] +
 (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))
[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^
2))^2)) + (3.3833333333333337(u(t))[21] - 0.9666666666666667(u(t))[20] - 5.
316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t
))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)
*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*
((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t
))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] 
- 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2
)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + 
(1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20]
 + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] 
- (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)
 + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (
13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t)
)[22])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.316666666666667(u(t))[22
] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22]
 + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(
t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (
13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + 
(1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22]
 + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t
))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23]
)^2))^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~ ((1.45(u(t))[25] - 2.9
(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(
t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.
1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4
)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u
(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25
] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))
^2)) + (5.316666666666667(u(t))[23] + 0.9666666666666667(u(t))[25] - 3.3833
333333333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[2
4])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / (
(1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3
(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[
25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4
(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) 
+ (2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2
(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 
2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13
//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))
[21] - 4(u(t))[22])^2))^2)) + (3.3833333333333337(u(t))[22] - 0.96666666666
66667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)
*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] 
- 4(u(t))[22])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.8(u(t))[24]) /
 ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t)
)[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] -
 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] -
 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] +
 (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(
u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13/
/12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + 
(u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + 
(u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))
[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*((
(u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[23], Differential(t)
((u(t))[24]) ~ ((3.3833333333333337(u(t))[23] - 0.9666666666666667(u(t))[22
] - 5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] -
 (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (
1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] 
+ (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t
))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])
^2))^2)) + (0.9666666666666667(u(t))[26] + 5.316666666666667(u(t))[24] - 3.
3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u
(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[2
3])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(
t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26
] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^
2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[2
4] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(
u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) +
 (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u
(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t
))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[2
5])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((
1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(
u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(
t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[26] - 2.9(u(t))[2
4] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])
^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(
t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22]
 - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u
(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (
2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(
t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1
 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)
*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])
^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ ((5.316666666666667(u(t
))[25] + 0.9666666666666667(u(t))[27] - 3.3833333333333337(u(t))[26]) / ((0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//
12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (
u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u
(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(
u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (7.25(u(t))[24] + 2.9(u(t))
[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[2
3] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2
) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(
u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) +
 (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + 
(u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (
u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1/
/4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[
27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t))[24] - 0.966666666666
6667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t)
)[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))
[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*(
(3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] -
 2(u(t))[24])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5(u(t))[25]) / 
((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (1
3//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 
2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] -
 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))
*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + 
(u(t))[26] - 2(u(t))[25])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u
(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[
24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / 
((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((
3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[
25])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((
u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[25], Differential(t)(
(u(t))[26]) ~ ((3.3833333333333337(u(t))[25] - 0.9666666666666667(u(t))[24]
 - 5.316666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] 
+ (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t)
)[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t
))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] +
 (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t)
)[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^
2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0
e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t
))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(
t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] 
- 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^
2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] 
+ (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26] - 2.9
(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t
))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*
((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t)
)[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(
((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] + 7.25(u(t
))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t)
)[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^
2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])
^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))
[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] -
 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2))
 + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] +
 (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] 
+ (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t)
)[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13
//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[
26])^2))^2)) + (5.316666666666667(u(t))[26] + 0.9666666666666667(u(t))[28] 
- 3.3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] 
+ (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t)
)[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t
))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] +
 (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t)
)[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^
2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ ((7.25(u(t))[26] + 2.9(u
(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t
))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)
*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12
)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t
))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] 
- 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2
)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25]
 + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] 
- (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + 
(1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t)
)[27])^2))^2)) + (3.3833333333333337(u(t))[26] - 0.9666666666666667(u(t))[2
5] - 5.316666666666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27
] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(
t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(
t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26]
 + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t
))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.3 / ((1.
0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(
t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27]
 - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])
^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] -
 2(u(t))[27])^2))^2)) + (1.45(u(t))[29] - 2.9(u(t))[27] - 7.25(u(t))[28]) /
 ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + 
(1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + 
(1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25]
 + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] 
- (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*
((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (0.9666666666666667(u(t
))[29] + 5.316666666666667(u(t))[27] - 3.3833333333333337(u(t))[28]) / ((0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//1
2)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(
t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u
(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u
(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)))*(u(t))[27], Differential(t)((
u(t))[28]) ~ ((3.3833333333333337(u(t))[27] - 0.9666666666666667(u(t))[26] 
- 5.316666666666667(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (
u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + 
(u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[
26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9(u(t))[29]) / ((0.3 / ((1.0e-
6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))
[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2)
)^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2)
 + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1/
/4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(
u(t))[28])^2))^2)) + (2.9(u(t))[28] + 7.25(u(t))[27] - 1.45(u(t))[26]) / ((
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(
u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(
u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*((
(u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[30] - 2.9(u(t)
)[28] - 7.25(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[2
9])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*((
(u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[
30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4
(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)) 
+ (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))[28]) / ((0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(
u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(
u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13/
/12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[2
8])^2))^2)) + (0.9666666666666667(u(t))[30] + 5.316666666666667(u(t))[28] -
 3.3833333333333337(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + 
(u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))
[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13/
/12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + 
(u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[
30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2
))^2)))*(u(t))[28], 0 ~ 0.2(u(t))[1] + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))
[6] - (u(t))[2] - 2.0(u(t))[4], 0 ~ 0.2(u(t))[30] + 2.0(u(t))[28] + (u(t))[
26] - 0.2(u(t))[25] - (u(t))[29] - 2.0(u(t))[27]], t, SymbolicUtils.Term{Re
al, Nothing}[(u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[
8], (u(t))[9], (u(t))[10], (u(t))[11], (u(t))[12]  …  (u(t))[21], (u(t))[22
], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], 
(u(t))[2], (u(t))[30]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics
.Equation[(u(t))[29] ~ -0.017241379310344827 / (1 + t) + 0.25(u(t))[28] + 0
.75(u(t))[30], (u(t))[1] ~ -0.022988505747126436 / (1 + t) + 1.333333333333
3333(u(t))[2] - 0.3333333333333333(u(t))[3]], Base.RefValue{Vector{Symbolic
s.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0
, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValu
e{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue
{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys2, Mode
lingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.5517241379310345, (
u(t))[18] => 0.5862068965517241, (u(t))[8] => 0.2413793103448276, (u(t))[10
] => 0.3103448275862069, (u(t))[27] => 0.896551724137931, (u(t))[28] => 0.9
310344827586207, (u(t))[2] => 0.034482758620689655, (u(t))[24] => 0.7931034
482758621, (u(t))[30] => 1.0, (u(t))[21] => 0.6896551724137931…), nothing, 
nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolki
t.SymbolicContinuousCallback(Symbolics.Equation[], Symbolics.Equation[])], 
ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{t
rue}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid},
 MethodOfLines.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodO
fLines.ScalarizedDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{
Any}, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1
, 1, MethodOfLines.CenterAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)
], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{S
ymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, F
loat64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{Symboli
cUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.I
mmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtil
s.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.Immut
ableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Rea
l, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Re
al, Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [
(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7]
, (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23], 
(u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(
t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}},
 StepRangeLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Fl
oat64}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{
Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwiceP
recision{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.0344827
58620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType,
 Any}}, Float64}(x => 0.034482758620689655), Dict{SymbolicUtils.Term{Real, 
Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{In
t64}}}}(u(t, x) => CartesianIndices((30,))), Dict{SymbolicUtils.Term{Real, 
Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{In
t64}}}}(u(t, x) => CartesianIndices((30,)))), MethodOfLines.MOLFiniteDiffer
ence{MethodOfLines.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretizatio
n}(Dict{Symbolics.Num, Int64}(x => 30), t, 2, MethodOfLines.WENOScheme(1.0e
-6), MethodOfLines.CenterAlignedGrid(), true, false, MethodOfLines.Scalariz
edDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tup
le{}}}()), ModelingToolkit.PDESystem(Symbolics.Equation[Differential(x)(u(t
, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~
 x, Differential(x)(u(t, 0.0)) ~ 1 / (1 + t), Differential(x)(u(t, 1.0)) ~ 
1 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0.
.20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symb
olics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, 
Any[], :pdesys2, nothing), false, Base.RefValue{Any}(nothing)), nothing, Mo
delingToolkit.Substitutions(Symbolics.Equation[(u(t))[29] ~ -0.017241379310
344827 / (1 + t) + 0.25(u(t))[28] + 0.75(u(t))[30], (u(t))[1] ~ -0.02298850
5747126436 / (1 + t) + 1.3333333333333333(u(t))[2] - 0.3333333333333333(u(t
))[3]], [Int64[], Int64[]], Symbolics.Equation[Differential(t)((u(t))[3]) ~
 ((0.022222222222222223 / (1 + t) + 2.094444444444445(u(t))[2] - 4.99444444
4444445(u(t))[3]) / ((0.1 / ((1.0e-6 + (1//4)*((-0.022988505747126436 / (1 
+ t) + 2.6666666666666665(u(t))[3] - 2.666666666666667(u(t))[2])^2) + (13//
12)*((-0.022988505747126436 / (1 + t) + 0.6666666666666667(u(t))[3] - 0.666
6666666666667(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t
))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(
t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((-0.02298850574
7126436 / (1 + t) + 2.6666666666666665(u(t))[3] - 2.666666666666667(u(t))[2
])^2) + (13//12)*((-0.022988505747126436 / (1 + t) + 0.6666666666666667(u(t
))[3] - 0.6666666666666667(u(t))[2])^2))^2)) + (5.8(u(t))[2] + 14.5(u(t))[3
] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//4)*((-0.022988505747126436 / (1 
+ t) + 2.6666666666666665(u(t))[3] - 2.666666666666667(u(t))[2])^2) + (13//
12)*((-0.022988505747126436 / (1 + t) + 0.6666666666666667(u(t))[3] - 0.666
6666666666667(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t
))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(
t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u
(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (0.0
3333333333333333 / (1 + t) + 3.3833333333333333(u(t))[3] + 5.31666666666666
6(u(t))[2]) / ((0.3 / ((1.0e-6 + (1//4)*((-0.022988505747126436 / (1 + t) +
 2.6666666666666665(u(t))[3] - 2.666666666666667(u(t))[2])^2) + (13//12)*((
-0.022988505747126436 / (1 + t) + 0.6666666666666667(u(t))[3] - 0.666666666
6666667(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])
^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3]
 + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((-0.02298850574712643
6 / (1 + t) + 2.6666666666666665(u(t))[3] - 2.666666666666667(u(t))[2])^2) 
+ (13//12)*((-0.022988505747126436 / (1 + t) + 0.6666666666666667(u(t))[3] 
- 0.6666666666666667(u(t))[2])^2))^2)) + (2.9(u(t))[2] - 14.5(u(t))[3] - 5.
8(u(t))[4]) / ((0.1 / ((1.0e-6 + (1//4)*((-0.022988505747126436 / (1 + t) +
 2.6666666666666665(u(t))[3] - 2.666666666666667(u(t))[2])^2) + (13//12)*((
-0.022988505747126436 / (1 + t) + 0.6666666666666667(u(t))[3] - 0.666666666
6666667(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])
^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-
6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3]
 + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4
])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (5.3166666
66666667(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.3833333333333337(u(t))[
4]) / ((0.3 / ((1.0e-6 + (1//4)*((-0.022988505747126436 / (1 + t) + 2.66666
66666666665(u(t))[3] - 2.666666666666667(u(t))[2])^2) + (13//12)*((-0.02298
8505747126436 / (1 + t) + 0.6666666666666667(u(t))[3] - 0.6666666666666667(
u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (1
3//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u
(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.4
5(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1.0e-6 + (1//4)*((-0
.022988505747126436 / (1 + t) + 2.6666666666666665(u(t))[3] - 2.66666666666
6667(u(t))[2])^2) + (13//12)*((-0.022988505747126436 / (1 + t) + 0.66666666
66666667(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u
(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t)
)[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 
+ (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] +
 (u(t))[5] - 2(u(t))[4])^2))^2)))*(u(t))[3], Differential(t)((u(t))[4]) ~ (
(3.3833333333333337(u(t))[3] - 0.9666666666666667(u(t))[2] - 5.316666666666
667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t
))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))
[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6]
 - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u
(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 
14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(
t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6
] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))
*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(
t))[5] - 2(u(t))[4])^2))^2)) + (0.9666666666666667(u(t))[6] + 5.31666666666
6667(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*
(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] 
- 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) 
+ (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + 
(1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (
u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] -
 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + 
(1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12
)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2
] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] +
 (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6]
 - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) 
+ (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[
2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] 
+ (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5]
)^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (7.25(u(t))
[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[
2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))
[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12
)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] 
- 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))
[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)))*(u(t))[4],
 Differential(t)((u(t))[5]) ~ ((3.3833333333333337(u(t))[4] - 0.96666666666
66667(u(t))[3] - 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] 
- 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) 
+ (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (
u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] -
 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + 
(5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(
((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])
^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2)
 + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + 
(u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^
2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (0.9666666666
666667(u(t))[7] + 5.316666666666667(u(t))[5] - 3.3833333333333337(u(t))[6])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t)
)[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5
] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))
[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6
])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1
3//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(
t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t
))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))
[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + 
(1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (
u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[
5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t)
)[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 +
 (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(
u(t))[5])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (
1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*((
(u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 
4(u(t))[6])^2))^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~ ((2.9(u(t))[6]
 + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] -
 (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5]
)^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (3.38333333
33333337(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.316666666666667(u(t))[6
]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + 
(13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t
))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[
7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + 
(1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (
u(t))[6] - 2(u(t))[5])^2))^2)) + (5.316666666666667(u(t))[6] + 0.9666666666
666667(u(t))[8] - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6]
)^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2
) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8]
 - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) 
+ (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))
[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])
^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-
6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6]
 + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[
8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)
) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//
4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))
[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5]
)^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6
] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[
7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)) + (2.9(u(t)
)[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t)
)[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//1
2)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8]
 - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13/
/12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], Differential
(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.9666666666666667(u(t))[5
] - 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (
u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*((
(u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(
u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])
^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (7.25(u(t))[6
] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] -
 (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*(
(3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6
])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (5.8(u(t))[
6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] 
- (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*
((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] -
 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//1
2)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t
))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-
6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7]
 + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] +
 (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(
t))[9] + 5.316666666666667(u(t))[7] - 3.3833333333333337(u(t))[8]) / ((0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (1
3//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(
u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (
u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t
))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))
^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + 
(1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2
))^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ ((7.25(u(t))[7] + 2.9(u(t))
[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10]
 - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7]
 + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + 
(u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13/
/12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[10] - 2.9(
u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t)
)[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))
^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (
13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t)
)[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2)
 + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (3.383333333333
3337(u(t))[7] - 0.9666666666666667(u(t))[6] - 5.316666666666667(u(t))[8]) /
 ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1
//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t)
)[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9]
)^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(
t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]
) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) +
 (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (
1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))
[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 +
 (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(
u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3
(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))
^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (
13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2
))^2)) + (0.9666666666666667(u(t))[10] + 5.316666666666667(u(t))[8] - 3.383
3333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[
10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8]
 + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[
7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) +
 (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)))*(u(t))[8], Differe
ntial(t)((u(t))[9]) ~ ((2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)
*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11
] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])
^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(
t))[9] - 2(u(t))[8])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[
10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^
2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7]
 + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (
u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(
t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[8] -
 0.9666666666666667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((0.3 / ((1.0e
-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))
[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t)
)[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//
12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(
u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*((
(u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] -
 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2)
 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4
)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t)
)[9])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((
1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u
(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(
u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (
13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9]
)^2))^2)) + (5.316666666666667(u(t))[9] + 0.9666666666666667(u(t))[11] - 3.
3833333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t
))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))
^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) 
+ (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 
2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[
10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)))*(u(t))[9
], Differential(t)((u(t))[10]) ~ ((5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t)
)[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])
^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))
[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^
2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2))^2)) + (7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(
u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(
t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//
4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (1.45(u(t))[12] - 2.9(
u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(
t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12
] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(
u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)) + 
(3.3833333333333337(u(t))[9] - 0.9666666666666667(u(t))[8] - 5.316666666666
667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u
(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (
u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[1
1])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) +
 (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (2.9(u(t))[9] - 5
.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + 
(u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))
[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) 
+ (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (0.96666666666
66667(u(t))[12] + 5.316666666666667(u(t))[10] - 3.3833333333333337(u(t))[11
]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) 
+ (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10]
 + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] -
 (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((
3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Differential(t
)((u(t))[11]) ~ ((2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + 
(u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))
[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))
[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[1
1] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[10] - 0.9
666666666666667(u(t))[9] - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11
] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] 
- (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)
 + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (
13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t)
)[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[1
1]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2
) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12
] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13
] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))
^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10
] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2
.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (
13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + 
(1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11]
 + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9]
 + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t)
)[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t
))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))
[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((
u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[1
3] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(
u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) +
 (5.316666666666667(u(t))[11] + 0.9666666666666667(u(t))[13] - 3.3833333333
333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2)
 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))
[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(
u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[1
2])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[
11], Differential(t)((u(t))[12]) ~ ((5.316666666666667(u(t))[12] + 0.966666
6666666667(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 
2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] -
 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (
1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t)
)[14] - 4(u(t))[13])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))
[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*
(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t)
)[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t
))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + 
(1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (1.45(u(t))[14] 
- 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] 
- (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + 
(1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12]
 + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(
t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13]
)^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t)
)[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t
))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])
^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13]
)^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] -
 2(u(t))[12])^2))^2)) + (3.3833333333333337(u(t))[11] - 0.9666666666666667(
u(t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t
))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])
^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11]
)^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(
t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10
] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(
t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] 
+ (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10]
 + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t
))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(
t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.
0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t)
)[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Differential(t)((u(t))[21]) ~ 
((1.45(u(t))[23] - 2.9(u(t))[21] - 7.25(u(t))[22]) / ((0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(
u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(
u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1/
/4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[
23] - 4(u(t))[22])^2))^2)) + (5.316666666666667(u(t))[21] + 0.9666666666666
667(u(t))[23] - 3.3833333333333337(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)
*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t)
)[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))
[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*
(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] -
 4(u(t))[22])^2))^2)) + (3.3833333333333337(u(t))[20] - 0.9666666666666667(
u(t))[19] - 5.316666666666667(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t
))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])
^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])
^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(
t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21]
 + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(
t))[20])^2))^2)) + (7.25(u(t))[20] + 2.9(u(t))[21] - 1.45(u(t))[19]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4
)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(
t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(
t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u
(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (5.8(u(t))[20] + 14.5(u(t))[
21] - 2.9(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23
] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(
t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21]
 - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (
13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[20] -
 14.5(u(t))[21] - 5.8(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] -
 (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (1
3//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] 
+ (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))
[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)))*(u(t)
)[21], Differential(t)((u(t))[22]) ~ ((3.3833333333333337(u(t))[21] - 0.966
6666666666667(u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20
] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21]
 - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2
) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + 
(13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)
*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(
t))[22] - 2(u(t))[21])^2))^2)) + (5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u(t)
)[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21]
)^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t
))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t
))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t
))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23]
 - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] -
 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t)
)[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] -
 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13
//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (7.25(u(t))[21] + 
2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] +
 (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t)
)[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13
//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] +
 (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))
[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^
2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t
))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^
2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^
2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] 
+ (u(t))[24] - 2(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.316
666666666667(u(t))[22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20
] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21]
 - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + 
(13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)
*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(
t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~ (
(3.3833333333333337(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.3166666666
66667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) 
+ (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6
 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[
23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2
(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))
[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (5.8(
u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[2
3])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[
22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*((
(u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2
2] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))
^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24]
 - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23
] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^
2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) +
 (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4
)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(
t))[23])^2))^2)) + (5.316666666666667(u(t))[23] + 0.9666666666666667(u(t))[
25] - 3.3833333333333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22
] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) 
+ (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[2
3] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u
(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[2
4])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u
(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (
u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[2
2])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[2
4])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[
23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (1.45(u(t))[25] - 2.9(u(t))[23] -
 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) 
+ (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6
 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[
23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2
(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[
24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t))
[23], Differential(t)((u(t))[24]) ~ ((1.45(u(t))[26] - 2.9(u(t))[24] - 7.25
(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13
//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] +
 (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] 
+ (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t)
)[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])
^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(t)
)[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(
t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] 
- 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24]
 - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t
))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22]
 + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t
))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*
((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12
)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t
))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t)
)[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))
[25] - 2(u(t))[24])^2))^2)) + (3.3833333333333337(u(t))[23] - 0.96666666666
66667(u(t))[22] - 5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t)
)[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t
))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*
((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] 
- 4(u(t))[23])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]) /
 ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t)
)[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] -
 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] 
- 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] +
 (u(t))[25] - 2(u(t))[24])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.3166
66666666667(u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24]
 + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22
] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(
t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (
13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t
))[26] - 4(u(t))[25])^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ ((
7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u
(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[2
6])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3(u
(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25
] - 2(u(t))[24])^2))^2)) + (5.316666666666667(u(t))[25] + 0.966666666666666
7(u(t))[27] - 3.3833333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[
25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))
[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*((
(u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4
(u(t))[26])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) / (
(0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13
//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2
(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 
2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((
3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t))
[24] - 0.9666666666666667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)
*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t)
)[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t
))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0
e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t
))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t))[25
] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] -
 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + 
(1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] -
 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13
//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (2.9(u(t))[24] - 5
.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + 
(u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))
[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13/
/12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + 
(u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[2
6])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[
25], Differential(t)((u(t))[26]) ~ ((2.9(u(t))[26] + 7.25(u(t))[25] - 1.45(
u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t)
)[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*(
(3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))
[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^
2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (5.8(u(t))[
25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 
4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] -
 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))
[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (
u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) +
 (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 + (13
//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + 
(u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] +
 (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))
[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13/
/12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[
28] - 4(u(t))[27])^2))^2)) + (5.316666666666667(u(t))[26] + 0.9666666666666
667(u(t))[28] - 3.3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)
*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t)
)[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t
))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*
(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] -
 4(u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[25] - 0.9666666666666667(
u(t))[24] - 5.316666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24]
 - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28
] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(
t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24
] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(
t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((0.1
 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)
*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(
t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t
))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.
0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ ((3
.3833333333333337(u(t))[26] - 0.9666666666666667(u(t))[25] - 5.316666666666
667(u(t))[27]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u
(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26
] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.0172413
79310344827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) +
 (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] -
 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u
(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + 
(7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u
(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0
.1 / ((1.0e-6 + (1//4)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] +
 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.017241379310344827 / (1 +
 t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(
t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[2
6])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u
(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((-0.0172413793103
44827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//
12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(
u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (2.9(u(t))[26] - 5.8(
u(t))[28] - 14.5(u(t))[27]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(
t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12
)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)
*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(
t))[28])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] +
 (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t
))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (-
0.016666666666666666 / (1 + t) + 0.725(u(t))[30] + 5.316666666666667(u(t))[
27] - 3.141666666666667(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27
] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u
(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 
3.75(u(t))[28])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t)
)[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((-0.0172413
79310344827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) +
 (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] -
 1.75(u(t))[28])^2))^2)) + (-0.024999999999999998 / (1 + t) + 1.0875(u(t))[
30] - 2.9(u(t))[27] - 6.8875(u(t))[28]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] 
- 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^
2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[2
7] - 3.75(u(t))[28])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75
(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((-0.01
7241379310344827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])
^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[
27] - 1.75(u(t))[28])^2))^2)))*(u(t))[27], Differential(t)((u(t))[28]) ~ ((
0.05833333333333334 / (1 + t) + 4.470833333333334(u(t))[28] - 1.57083333333
33337(u(t))[30]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4
(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((0.06896551724137931 / (1 + t) + 2.0(u(t))[28] - 
2.0(u(t))[30])^2) + (13//12)*((0.034482758620689655 / (1 + t) + 0.5(u(t))[2
8] - 0.5(u(t))[30])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.017241379310344827
 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((
-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[
28])^2))^2))*((1.0e-6 + (1//4)*((0.06896551724137931 / (1 + t) + 2.0(u(t))[
28] - 2.0(u(t))[30])^2) + (13//12)*((0.034482758620689655 / (1 + t) + 0.5(u
(t))[28] - 0.5(u(t))[30])^2))^2)) + (3.3833333333333337(u(t))[27] - 0.96666
66666666667(u(t))[26] - 5.316666666666667(u(t))[28]) / ((0.3 / ((1.0e-6 + (
1//4)*((0.06896551724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) +
 (13//12)*((0.034482758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])
^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])
^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*((0.017241379310344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28
] - 0.75(u(t))[30])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(
u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] -
 2(u(t))[27])^2))^2)) + (0.125 / (1 + t) - 3.9875(u(t))[30] - 4.7125(u(t))[
28]) / ((0.3 / ((1.0e-6 + (1//4)*((0.06896551724137931 / (1 + t) + 2.0(u(t)
)[28] - 2.0(u(t))[30])^2) + (13//12)*((0.034482758620689655 / (1 + t) + 0.5
(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] 
+ (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t
))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.017241379310344827 / (1 + t) +
 (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-0.017241379
310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))
*((1.0e-6 + (1//4)*((0.06896551724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(
t))[30])^2) + (13//12)*((0.034482758620689655 / (1 + t) + 0.5(u(t))[28] - 0
.5(u(t))[30])^2))^2)) + (2.9(u(t))[28] + 7.25(u(t))[27] - 1.45(u(t))[26]) /
 ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (
13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + 
(1//4)*((0.06896551724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) 
+ (13//12)*((0.034482758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.017241379310344827 / (1 + t) + (u(t)
)[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-0.017241379310344
827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0
e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t
))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (0.09999999999999999 / (1 + t)
 + 2.9(u(t))[27] - 4.35(u(t))[30] - 15.95(u(t))[28]) / ((0.3 / ((1.0e-6 + (
1//4)*((0.06896551724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) +
 (13//12)*((0.034482758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])
^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])
^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*((0.017241379310344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28
] - 0.75(u(t))[30])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(
u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((0.0172
41379310344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2)
 + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27]
 - 1.75(u(t))[28])^2))^2)) + (0.049999999999999996 / (1 + t) + 5.8(u(t))[27
] + 13.775(u(t))[28] - 2.175(u(t))[30]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] 
- 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.06896551724137931 / (1 
+ t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.034482758620689655 
/ (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*((0.017241379310344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t)
)[30])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (
u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((0.01724137931034482
7 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*(
(-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))
[28])^2))^2)))*(u(t))[28], 0 ~ -0.004597701149425287 / (1 + t) + 1.93333333
33333333(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 0.7333333333333334(u(t))[2] 
- 2.0(u(t))[4], 0 ~ 0.017241379310344827 / (1 + t) + 1.75(u(t))[28] + (u(t)
)[26] - 0.2(u(t))[25] - 0.55(u(t))[30] - 2.0(u(t))[27]])), Any[(u(t))[3], (
u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]
, (u(t))[11], (u(t))[12]  …  Differential(t)((u(t))[21]), Differential(t)((
u(t))[22]), Differential(t)((u(t))[23]), Differential(t)((u(t))[24]), Diffe
rential(t)((u(t))[25]), Differential(t)((u(t))[26]), Differential(t)((u(t))
[27]), Differential(t)((u(t))[28]), (u(t))[2], (u(t))[30]], ModelingToolkit
.SystemStructures.SystemStructure(ModelingToolkit.SystemStructures.DiffGrap
h(Union{Nothing, Int64}[27, 28, 29, 30, 31, 32, 33, 34, 35, 36  …  nothing,
 nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, no
thing], Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, 
nothing, nothing, nothing, nothing, nothing  …  19, 20, 21, 22, 23, 24, 25,
 26, nothing, nothing]), ModelingToolkit.SystemStructures.DiffGraph(Union{N
othing, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, nothin
g, nothing, nothing, nothing  …  nothing, nothing, nothing, nothing, nothin
g, nothing, nothing, nothing, nothing, nothing], Union{Nothing, Int64}[noth
ing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing
, nothing  …  nothing, nothing, nothing, nothing, nothing, nothing, nothing
, nothing, nothing, nothing]), BipartiteGraph with (28, 54) (𝑠,𝑑)-vertices
   #  src                    dst
  1   [1, 2, 3, 27, 53]      [1, 2, 3, 27]
  2   [1, 2, 3, 4, 28, 53]   [1, 2, 3, 4, 27]
  3   [1, 2, 3, 4, 5, 29]    [1, 2, 3, 4, 5, 27]
  4   [2, 3, 4, 5, 6, 30]    [2, 3, 4, 5, 6, 27]
  5   [3, 4, 5, 6, 7, 31]    [3, 4, 5, 6, 7]
  6   [4, 5, 6, 7, 8, 32]    [4, 5, 6, 7, 8]
  7   [5, 6, 7, 8, 9, 33]    [5, 6, 7, 8, 9]
  8   [6, 7, 8, 9, 10, 34]   [6, 7, 8, 9, 10]
  9   [7, 8, 9, 10, 11, 35]  [7, 8, 9, 10, 11]
  ⋮                          
 46   ⋅                      [20]
 47   ⋅                      [21]
 48   ⋅                      [22]
 49   ⋅                      [23]
 50   ⋅                      [24]
 51   ⋅                      [25]
 52   ⋅                      [26]
 53   ⋅                      [1, 2, 27]
 54   ⋅                      [25, 26, 28], BipartiteGraph with (30, 56) (𝑠,
𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 48   ⋅    ∅
 49   ⋅    [30]
 50   ⋅    [30]
 51   ⋅    [30]
 52   ⋅    [28, 30]
 53   ⋅    [27, 29]
 54   ⋅    [27, 29]
 55   ⋅    [28, 30]
 56   ⋅    [28, 30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equat
ion[(u(t))[29] ~ -0.017241379310344827 / (1 + t) + 0.25(u(t))[28] + 0.75(u(
t))[30], (u(t))[1] ~ -0.022988505747126436 / (1 + t) + 1.3333333333333333(u
(t))[2] - 0.3333333333333333(u(t))[3]], [Int64[], Int64[]], Symbolics.Equat
ion[Differential(t)((u(t))[3]) ~ ((0.022222222222222223 / (1 + t) + 2.09444
4444444445(u(t))[2] - 4.994444444444445(u(t))[3]) / ((0.1 / ((1.0e-6 + (1//
4)*((-0.022988505747126436 / (1 + t) + 2.6666666666666665(u(t))[3] - 2.6666
66666666667(u(t))[2])^2) + (13//12)*((-0.022988505747126436 / (1 + t) + 0.6
666666666666667(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4
] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] -
 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((
1.0e-6 + (1//4)*((-0.022988505747126436 / (1 + t) + 2.6666666666666665(u(t)
)[3] - 2.666666666666667(u(t))[2])^2) + (13//12)*((-0.022988505747126436 / 
(1 + t) + 0.6666666666666667(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2)
) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//
4)*((-0.022988505747126436 / (1 + t) + 2.6666666666666665(u(t))[3] - 2.6666
66666666667(u(t))[2])^2) + (13//12)*((-0.022988505747126436 / (1 + t) + 0.6
666666666666667(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4
] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] -
 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))
[4] - 2(u(t))[3])^2))^2)) + (0.03333333333333333 / (1 + t) + 3.383333333333
3333(u(t))[3] + 5.316666666666666(u(t))[2]) / ((0.3 / ((1.0e-6 + (1//4)*((-
0.022988505747126436 / (1 + t) + 2.6666666666666665(u(t))[3] - 2.6666666666
66667(u(t))[2])^2) + (13//12)*((-0.022988505747126436 / (1 + t) + 0.6666666
666666667(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(
u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t
))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6
 + (1//4)*((-0.022988505747126436 / (1 + t) + 2.6666666666666665(u(t))[3] -
 2.666666666666667(u(t))[2])^2) + (13//12)*((-0.022988505747126436 / (1 + t
) + 0.6666666666666667(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2)) + (2
.9(u(t))[2] - 14.5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (1//4)*((-
0.022988505747126436 / (1 + t) + 2.6666666666666665(u(t))[3] - 2.6666666666
66667(u(t))[2])^2) + (13//12)*((-0.022988505747126436 / (1 + t) + 0.6666666
666666667(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(
u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t
))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6
 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 
2(u(t))[3])^2))^2)) + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(t)
)[5] - 3.3833333333333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//4)*((-0.022988
505747126436 / (1 + t) + 2.6666666666666665(u(t))[3] - 2.666666666666667(u(
t))[2])^2) + (13//12)*((-0.022988505747126436 / (1 + t) + 0.666666666666666
7(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4
)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))
[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) 
/ ((0.1 / ((1.0e-6 + (1//4)*((-0.022988505747126436 / (1 + t) + 2.666666666
6666665(u(t))[3] - 2.666666666666667(u(t))[2])^2) + (13//12)*((-0.022988505
747126436 / (1 + t) + 0.6666666666666667(u(t))[3] - 0.6666666666666667(u(t)
)[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//1
2)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5]
 - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))
[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)))*(u(t))[3]
, Differential(t)((u(t))[4]) ~ ((3.3833333333333337(u(t))[3] - 0.9666666666
666667(u(t))[2] - 5.316666666666667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)
*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2]
 - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2)
 + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4]
 - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) +
 (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12
)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2
] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] +
 (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])
^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (0.966666666
6666667(u(t))[6] + 5.316666666666667(u(t))[4] - 3.3833333333333337(u(t))[5]
) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + 
(1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t)
)[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5
])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u
(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[
5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) 
+ (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(
t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))
[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))
[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2)
 + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t)
)[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2
(u(t))[4])^2))^2)) + (7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((
3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))
^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] -
 4(u(t))[3])^2))^2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((3.383333333
3333337(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.316666666666667(u(t))[5]
) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t)
)[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u
(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t
))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))
[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u
(t))[5])^2))^2)) + (0.9666666666666667(u(t))[7] + 5.316666666666667(u(t))[5
] - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - 
(u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(
((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((
u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4
(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6]
)^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[5
] + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] 
- (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] -
 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4
])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))
[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5
] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))
[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12
)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] 
- 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//
12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[7] - 2.9(u(
t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3
] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4
] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1
//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)))*(u(t))[5], Differentia
l(t)((u(t))[6]) ~ ((2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(
t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))
[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13
//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u
(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2
(u(t))[5])^2))^2)) + (3.3833333333333337(u(t))[5] - 0.9666666666666667(u(t)
)[4] - 5.316666666666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6]
 + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)
*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5
])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.3166666
66666667(u(t))[6] + 0.9666666666666667(u(t))[8] - 3.3833333333333337(u(t))[
7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))
[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + 
(u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t)
)[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2)
 + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(
u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t
))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] 
+ (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t
))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u
(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2
(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(
t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-
6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2)
)^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + 
(13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^
2))^2)))*(u(t))[6], Differential(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))
[6] - 0.9666666666666667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t)
)[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9
] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//
4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u
(t))[6])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(
t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t)
)[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13
//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4
(u(t))[6])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (1
3//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u
(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2)
)^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(
u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t
))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(
t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (
u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^
2))^2)) + (0.9666666666666667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.383
3333333333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7
] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] +
 (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8]
)^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13
//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[6] - 14.5(
u(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8
])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[
7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5]
 + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2)))*(u(t))[7], Differential(t)((u(t))[8
]) ~ ((7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (
13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (
u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t
))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(
t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (
u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^
2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-
6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8
] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] 
+ (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t
))[9])^2))^2)) + (3.3833333333333337(u(t))[7] - 0.9666666666666667(u(t))[6]
 - 5.316666666666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + 
(u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2
) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2
(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[7
] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))
[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] 
- 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(
t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[1
0] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[
7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] 
+ (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t)
)[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.
316666666666667(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] 
+ (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (
u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*((
(u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))
[9])^2))^2)))*(u(t))[8], Differential(t)((u(t))[9]) ~ ((2.9(u(t))[9] + 7.25
(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t)
)[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) +
 (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2
(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (1.45(u(t))[
11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))
[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u
(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t
))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t
))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] -
 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) 
+ (3.3833333333333337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.3166666666
66667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(
u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(
t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7
] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1
//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(
t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(
((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[
9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] 
- 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(
t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (5.316666666666667(u(t))[9] + 0
.9666666666666667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[
7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9]
 + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t)
)[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13/
/12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] 
- 4(u(t))[10])^2))^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((5.8(u(t)
)[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t
))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(
u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(
u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] 
+ (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[
11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (7.25(
u(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((
u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] -
 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] -
 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[
9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u
(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^
2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0
e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))
[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9]
 - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)
 + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + 
(1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t
))[12] - 4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[9] - 0.9666666666
666667(u(t))[8] - 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12
)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))
[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11]
)^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(
t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))
[9])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((
1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(
t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2)
 + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2))^2)) + (0.9666666666666667(u(t))[12] + 5.316666666666667(u(t))[1
0] - 3.3833333333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8
] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t)
)[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[1
2] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))
^2)))*(u(t))[10], Differential(t)((u(t))[11]) ~ ((2.9(u(t))[11] + 7.25(u(t)
)[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12
])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((
u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((
(u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9]
 - 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(
t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (3.
3833333333333337(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.31666666666666
7(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + 
(u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))
[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2
) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10
] - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[
9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(
t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (
13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11]
 + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t)
)[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.
8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(
((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))
[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))
[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((
3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[1
0] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))
^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[1
1] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10]
 - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2
) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + 
(13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)
*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(
t))[13] - 2(u(t))[12])^2))^2)) + (5.316666666666667(u(t))[11] + 0.966666666
6666667(u(t))[13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//
4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u
(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u
(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4
)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13]
 - 2(u(t))[12])^2))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ ((5.3166
66666666667(u(t))[12] + 0.9666666666666667(u(t))[14] - 3.3833333333333337(u
(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//
12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (
u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + 
(u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[
13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2
) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (2.9(u(t))[1
2] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2)
)^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2
) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))
[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))
[11])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + 
(u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))
[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t)
)[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e
-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t)
)[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12]
 - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2)
 + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-
6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))
[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 
4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13/
/12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (3.3833333333333337
(u(t))[11] - 0.9666666666666667(u(t))[10] - 5.316666666666667(u(t))[12]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))
[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 
4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] -
 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*(
(3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(
t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[
13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / 
((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((
3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))
[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2)
 + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …
  Differential(t)((u(t))[21]) ~ ((1.45(u(t))[23] - 2.9(u(t))[21] - 7.25(u(t
))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12
)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(
t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u
(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) 
+ (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2)) + (5.31666666666
6667(u(t))[21] + 0.9666666666666667(u(t))[23] - 3.3833333333333337(u(t))[22
]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2
) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[2
2] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[1
9] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2)
)^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1/
/4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2)) + (3.3833333333333337
(u(t))[20] - 0.9666666666666667(u(t))[19] - 5.316666666666667(u(t))[21]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))
[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 
2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] -
 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*
(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (7.25(u(t))[20] + 2.9(u(
t))[21] - 1.45(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t
))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*
(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t)
)[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] -
 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)
) + (5.8(u(t))[20] + 14.5(u(t))[21] - 2.9(u(t))[22]) / ((0.1 / ((1.0e-6 + (
13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] 
+ (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] -
 (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (1
3//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(
((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))
[21])^2))^2)) + (2.9(u(t))[20] - 14.5(u(t))[21] - 5.8(u(t))[22]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (
u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (
u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[
20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))
[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-
6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[2
2] - 2(u(t))[21])^2))^2)))*(u(t))[21], Differential(t)((u(t))[22]) ~ ((3.38
33333333333337(u(t))[21] - 0.9666666666666667(u(t))[20] - 5.316666666666667
(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t)
)[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] +
 (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] +
 (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^
2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (5.8(u(t))
[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] -
 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2
) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t)
)[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - 
(u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) 
+ (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + 
(u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (
u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13/
/12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*((
(u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[2
3])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[
20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] -
 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4
(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[
21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2
(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[
23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (0.96
66666666666667(u(t))[24] + 5.316666666666667(u(t))[22] - 3.3833333333333337
(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t)
)[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] +
 (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] +
 (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^
2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22],
 Differential(t)((u(t))[23]) ~ ((3.3833333333333337(u(t))[22] - 0.966666666
6666667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(
t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u
(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//1
2)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21
] - 4(u(t))[22])^2))^2)) + (5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(
t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u
(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21]
 - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25]
 - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^
2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22]
 + (u(t))[24] - 2(u(t))[23])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.
8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (1
3//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] 
+ (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] 
+ (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*
(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.316666666666667(u(t))
[23] + 0.9666666666666667(u(t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] 
+ (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21]
 + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t
))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t
))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.
0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(
t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[2
2] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])
^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(
t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25]
 - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u
(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (
1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(
t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u
(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//1
2)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u
(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25
] - 2(u(t))[24])^2))^2)))*(u(t))[23], Differential(t)((u(t))[24]) ~ ((1.45(
u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[2
4])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[
25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3
(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4
(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1
//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] +
 (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - 
(u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((
3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t
))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))
[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^
2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[
25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) 
+ (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (3.3833333333
333337(u(t))[23] - 0.9666666666666667(u(t))[22] - 5.316666666666667(u(t))[2
4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*((
(u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[
26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))
[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1
//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (2.9(u(t))[23] - 1
4.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (
u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1/
/4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13
//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + 
(u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[2
5])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (0.966
6666666666667(u(t))[26] + 5.316666666666667(u(t))[24] - 3.3833333333333337(
u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t)
)[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*(
(3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))
[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^
2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)))*(u(t))[24], 
Differential(t)((u(t))[25]) ~ ((7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))
[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])
^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(
t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (
13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.3166666666666
67(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.3833333333333337(u(t))[26])
 / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) +
 (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[2
5] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24
] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4
)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (1.45(u(t))[27] - 2.9
(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u
(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[2
4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u
(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[2
7] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))
^2)) + (3.3833333333333337(u(t))[24] - 0.9666666666666667(u(t))[23] - 5.316
666666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[
23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*((
(u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[
27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4
(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) 
+ (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + 
(u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] +
 (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))
[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13/
/12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[2
5])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((
u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[2
6])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26]
 - 2(u(t))[25])^2))^2)))*(u(t))[25], Differential(t)((u(t))[26]) ~ ((2.9(u(
t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*((
(u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[2
4] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[
28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((
u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(
u(t))[25])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0
.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//
4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (
u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u
(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(
t))[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t
))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[2
5])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((
1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(
u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) 
+ (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.31666666666
6667(u(t))[26] + 0.9666666666666667(u(t))[28] - 3.3833333333333337(u(t))[27
]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2
) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))
[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2)
)^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1/
/4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (3.3833333333333337
(u(t))[25] - 0.9666666666666667(u(t))[24] - 5.316666666666667(u(t))[26]) / 
((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (
1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] 
+ (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] -
 (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*(
(3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(
t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t)
)[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])
^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))
[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2)
 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)))*(u(t))[26], D
ifferential(t)((u(t))[27]) ~ ((3.3833333333333337(u(t))[26] - 0.96666666666
66667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t)
)[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + 3(
u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.017241379310344827 / (1 + t)
 + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*
((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2))^2)) + (7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t)
)[25]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26]
)^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t
))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((-0.017241379310344
827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12
)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(
t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26]
)^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t
))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27]
 - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])
^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.
0e-6 + (1//4)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[
27] - 3.75(u(t))[28])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.7
5(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])
^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t
))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^
2))^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.017241379310344827 / (1 + t) + 0.75(u
(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.017241379310344
827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))
[28] - 2(u(t))[27])^2))^2)) + (-0.016666666666666666 / (1 + t) + 0.725(u(t)
)[30] + 5.316666666666667(u(t))[27] - 3.141666666666667(u(t))[28]) / ((0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)
*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t)
)[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((-0.017241379310344827 / (1 + t) +
 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.01724137
9310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2)
)*((1.0e-6 + (1//4)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + 3(
u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.017241379310344827 / (1 + t)
 + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2)) + (-0.024999999999
999998 / (1 + t) + 1.0875(u(t))[30] - 2.9(u(t))[27] - 6.8875(u(t))[28]) / (
(0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13
//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2
(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.017241379310344827 / (1 +
 t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.017
241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2
))^2))*((1.0e-6 + (1//4)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30]
 + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.017241379310344827 / (1
 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2)))*(u(t))[27], 
Differential(t)((u(t))[28]) ~ ((0.05833333333333334 / (1 + t) + 4.470833333
333334(u(t))[28] - 1.5708333333333337(u(t))[30]) / ((0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u
(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.06896551724137
931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.0344827586
20689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*((0.017241379310344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] - 
0.75(u(t))[30])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t)
)[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((0.06896551
724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.0344
82758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2)) + (3.3833
333333333337(u(t))[27] - 0.9666666666666667(u(t))[26] - 5.316666666666667(u
(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((0.06896551724137931 / (1 + t) + 2.0
(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.034482758620689655 / (1 + t) 
+ 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.017241379310344827 / (1 +
 t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-0.0172
41379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2)
)^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (0.125 / (1 + t) - 
3.9875(u(t))[30] - 4.7125(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((0.068965
51724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.03
4482758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
0.017241379310344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[3
0])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t
))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((0.06896551724137931 / 
(1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.0344827586206896
55 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2)) + (2.9(u(t))[28] + 7.
25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + 
(u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))
[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.06896551724137931 / (1 + t) + 2.
0(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.034482758620689655 / (1 + t)
 + 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.0172
41379310344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2)
 + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27]
 - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4
(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) 
+ (0.09999999999999999 / (1 + t) + 2.9(u(t))[27] - 4.35(u(t))[30] - 15.95(u
(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((0.06896551724137931 / (1 + t) + 2.0
(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.034482758620689655 / (1 + t) 
+ 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.017241379310344827 / (1 +
 t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-0.0172
41379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2)
)^2))*((1.0e-6 + (1//4)*((0.017241379310344827 / (1 + t) + (u(t))[27] - 0.2
5(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-0.017241379310344827 / (1 + 
t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2)) + (0.04999999999
9999996 / (1 + t) + 5.8(u(t))[27] + 13.775(u(t))[28] - 2.175(u(t))[30]) / (
(0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13
//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((0.06896551724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + 
(13//12)*((0.034482758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.017241379310344827 / (1 + t) + (u(t))[
27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-0.01724137931034482
7 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-
6 + (1//4)*((0.017241379310344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] -
 0.75(u(t))[30])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t
))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2)))*(u(t))[28], 0 ~ -0.004597701
149425287 / (1 + t) + 1.9333333333333333(u(t))[3] + (u(t))[5] - 0.2(u(t))[6
] - 0.7333333333333334(u(t))[2] - 2.0(u(t))[4], 0 ~ 0.017241379310344827 / 
(1 + t) + 1.75(u(t))[28] + (u(t))[26] - 0.2(u(t))[25] - 0.55(u(t))[30] - 2.
0(u(t))[27]])), Dict{Any, Any}()), nothing, ModelingToolkit.ODESystem(Symbo
lics.Equation[Differential(t)((u(t))[3]) ~ ((3.3833333333333337(u(t))[2] - 
0.9666666666666667(u(t))[1] - 5.316666666666667(u(t))[3]) / ((0.1 / ((1.0e-
6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3]
 + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (
u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1]
 + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2
])^2))^2)) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e
-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3
] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - 
(u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(
((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] 
- (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + 
(1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12
)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1
] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2
) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] +
 (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5]
 - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) 
+ (2.9(u(t))[3] + 7.25(u(t))[2] - 1.45(u(t))[1]) / ((0.3 / ((1.0e-6 + (13//
12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))
[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])
^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3]
 + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))
[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2)
) + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.383333333
3333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2
(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u
(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t)
)[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*
(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[2] - 14.5(u(t))[
3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 
2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (
u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t
))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))
^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] +
 (u(t))[4] - 2(u(t))[3])^2))^2)))*(u(t))[3], Differential(t)((u(t))[4]) ~ (
(7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + (13//12
)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2
] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] +
 (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4
] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) 
+ (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[
2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] 
+ (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5]
)^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (3.38333333
33333337(u(t))[3] - 0.9666666666666667(u(t))[2] - 5.316666666666667(u(t))[4
]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) +
 (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t
))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[
5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (
u(t))[2] - 4(u(t))[3])^2))^2)) + (0.9666666666666667(u(t))[6] + 5.316666666
666667(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12
)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2
] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] +
 (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6]
 - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) 
+ (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[
2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6
 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] 
+ (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5]
)^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))
[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[
2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))
[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12
)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((
3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] 
- 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[
5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[4],
 Differential(t)((u(t))[5]) ~ ((0.9666666666666667(u(t))[7] + 5.31666666666
6667(u(t))[5] - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^
2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) 
+ (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (
u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] 
- 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + 
(3.3833333333333337(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.316666666666
667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t)
)[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))
[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7
] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u
(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] -
 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (1
3//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[
7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))
*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(
t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t
))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))
[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + 
(1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (
u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))
[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) 
+ (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u
(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t
))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 
+ (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] +
 (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t)
)[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2)
 + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(
u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(
t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6
 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 
2(u(t))[5])^2))^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~ ((3.3833333333
333337(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.316666666666667(u(t))[6])
 / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (1
3//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))
[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(
t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]
) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t)
)[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7
])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(
t))[6])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u
(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)
 + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13/
/12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(
u(t))[7])^2))^2)) + (5.316666666666667(u(t))[6] + 0.9666666666666667(u(t))[
8] - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] -
 (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[
6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5]
 - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12
)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] 
- 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[
5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t)
)[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5
] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//1
2)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8]
 - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13/
/12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], Differential
(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.9666666666666667(u(t))[5
] - 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (
u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*((
(u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(
u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])
^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (0.9666666666
666667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.3833333333333337(u(t))[8])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))
[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8]
)^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(
t))[9] - 2(u(t))[8])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(
t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t
))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[
8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (
u(t))[5] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[
8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u
(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(
t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t)
)[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 +
 (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(
u(t))[7])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(
t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t)
)[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13
//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))
^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u
(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t)
)[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t
))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u
(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2
))^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ ((3.3833333333333337(u(t))[
7] - 0.9666666666666667(u(t))[6] - 5.316666666666667(u(t))[8]) / ((0.3 / ((
1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(
t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(
t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(
u(t))[7])^2))^2)) + (7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((
3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2)
)^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + 
(13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((
3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] 
- 2(u(t))[7])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.316666666666667(u
(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t
))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(
u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (1
3//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t)
)[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2
(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (1
.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)
*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[1
0] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] 
- 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] 
+ (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[
10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2
)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13
//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(
t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t)
)[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t)
)[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t
))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u
(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(
t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4
(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (
13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t
))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) +
 (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))[8], Differe
ntial(t)((u(t))[9]) ~ ((5.316666666666667(u(t))[9] + 0.9666666666666667(u(t
))[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(
t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u
(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11]
 - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)
) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (
13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + 
(u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (
u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9
] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t
))[10])^2))^2)) + (3.3833333333333337(u(t))[8] - 0.9666666666666667(u(t))[7
] - 5.316666666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[
10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8]
)^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10
] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t)
)[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(
t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(
t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 
4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(
u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (
u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])
^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[
9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9
] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))
[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[
10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t)
)[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(
u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.
8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] -
 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 
2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[
10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)))*(u(t))[9
], Differential(t)((u(t))[10]) ~ ((7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(t
))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])
^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))
[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*
((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (5.8(u(t))[9] + 14.5(u(t)
)[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[1
0] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + 
(1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2
(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//1
2)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (3.3833333333333337(u(
t))[9] - 0.9666666666666667(u(t))[8] - 5.316666666666667(u(t))[10]) / ((0.1
 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*(
(3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11
])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] 
+ (u(t))[8] - 4(u(t))[9])^2))^2)) + (0.9666666666666667(u(t))[12] + 5.31666
6666666667(u(t))[10] - 3.3833333333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (
13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + 
(u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (
u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[1
1])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] 
- 4(u(t))[11])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / 
((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1/
/4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t)
)[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t
))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[1
1] - 2(u(t))[10])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11
]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) 
+ (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2
(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 
2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((
3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Differential(t
)((u(t))[11]) ~ ((3.3833333333333337(u(t))[10] - 0.9666666666666667(u(t))[9
] - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] 
+ (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))
[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13/
/12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + 
(u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[
11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))
^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[1
1] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10]
 - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2
) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + 
(13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)
*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(
t))[13] - 2(u(t))[12])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t)
)[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)
*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t
))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t
))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))
[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.316666666666667(u(t))[11] + 0
.9666666666666667(u(t))[13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))
[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))
[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^
2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1/
/4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + 
(u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(
u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//
12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (
u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (
u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) +
 (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] -
 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] 
+ (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))
[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13/
/12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + 
(u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[1
2])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)))*(u(t))[
11], Differential(t)((u(t))[12]) ~ ((5.316666666666667(u(t))[12] + 0.966666
6666666667(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 
2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] -
 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (
1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t)
)[14] - 4(u(t))[13])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))
[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*
(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)
*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t)
)[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t
))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + 
(1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] +
 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] -
 (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (
1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] 
+ (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))
[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9
(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(
((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))
[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*(
(3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] -
 4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[11] - 0.9666666666666667(
u(t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t
))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])
^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11]
)^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(
t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10
] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(
t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] 
+ (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10]
 + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t
))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(
t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.
0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t)
)[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Differential(t)((u(t))[21]) ~ 
((3.3833333333333337(u(t))[20] - 0.9666666666666667(u(t))[19] - 5.316666666
666667(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2)
 + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))
[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 
4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))
[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (1.4
5(u(t))[23] - 2.9(u(t))[21] - 7.25(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(
((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))
[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))
[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*(
(3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] -
 4(u(t))[22])^2))^2)) + (5.316666666666667(u(t))[21] + 0.9666666666666667(u
(t))[23] - 3.3833333333333337(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u
(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23]
 - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])
^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(
t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21
] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(
t))[22])^2))^2)) + (7.25(u(t))[20] + 2.9(u(t))[21] - 1.45(u(t))[19]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4
)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(
t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(
t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u
(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (5.8(u(t))[20] + 14.5(u(t))[
21] - 2.9(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23
] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(
t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21]
 - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (
13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[20] -
 14.5(u(t))[21] - 5.8(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] -
 (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (1
3//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] 
+ (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))
[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)))*(u(t)
)[21], Differential(t)((u(t))[22]) ~ ((5.8(u(t))[21] + 14.5(u(t))[22] - 2.9
(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t)
)[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] +
 (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] +
 (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(
((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t
))[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))
[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(
((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((
3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))
[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 
4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))
 + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] 
+ (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] -
 (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (1
3//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t)
)[22] - 2(u(t))[21])^2))^2)) + (3.3833333333333337(u(t))[21] - 0.9666666666
666667(u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(
t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t
))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12
)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22]
 - 2(u(t))[21])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) 
/ ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + 
(13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] 
- 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] 
- 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2
))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] 
+ (u(t))[23] - 2(u(t))[22])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.316
666666666667(u(t))[22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20
] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21]
 - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + 
(13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)
*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(
t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~ (
(1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//
4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u
(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(
u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//
12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(
u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[2
5] - 2(u(t))[24])^2))^2)) + (5.316666666666667(u(t))[23] + 0.96666666666666
67(u(t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[
23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))
[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(
((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 
2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))
[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 
4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 
4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*(
(3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (3.3833333333333337(u(t)
)[22] - 0.9666666666666667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] 
+ (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21]
 + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t
))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t
))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.
0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(
t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[2
3] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^
2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0
e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t
))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] 
- 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (1
3//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.8(u(t))[22] + 
14.5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - 
(u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1
//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] +
 (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[
24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))
[23], Differential(t)((u(t))[24]) ~ ((3.3833333333333337(u(t))[23] - 0.9666
666666666667(u(t))[22] - 5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] -
 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] 
- 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + 
(1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t
))[22] - 4(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.316666666
666667(u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//
12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u
(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (
u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[2
3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//1
2)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26
] - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]
) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2)
 + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[
24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
3] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//
4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.
5(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (
u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[2
5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[
23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u
(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25]
)^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(
t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(
t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25
])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u
(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2
4] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u
(t))[25])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.
6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23]
 + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24
] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(
t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u
(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1
.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t
))[25] - 2(u(t))[24])^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ ((
5.316666666666667(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.383333333333
3337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(
u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 
0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1/
/4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(
u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[
26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (7.25(
u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[
25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))
[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*((
(u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[
25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2
(u(t))[24])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) / (
(0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13
//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2
(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 
2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((
3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t))
[24] - 0.9666666666666667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)
*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t)
)[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t
))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0
e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t
))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26]
 - 14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] -
 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t)
)[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] -
 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13
//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (5.8(u(t))[24] + 1
4.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + 
(u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))
[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t)
)[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + 
(u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[2
6])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[
25], Differential(t)((u(t))[26]) ~ ((3.3833333333333337(u(t))[25] - 0.96666
66666666667(u(t))[24] - 5.316666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (
13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] 
+ (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26]
 + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t
))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (1
3//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t)
)[24] - 4(u(t))[25])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))
[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25]
)^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(
t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + 
(1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.8(u(t))[25] +
 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24]
 + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t
))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(
t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] 
+ (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))
[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9
(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)
*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t)
)[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t
))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*
(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] -
 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / 
((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (
1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] 
+ (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] -
 (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))
*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + 
(u(t))[27] - 2(u(t))[26])^2))^2)) + (5.316666666666667(u(t))[26] + 0.966666
6666666667(u(t))[28] - 3.3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (
13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] 
+ (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26]
 + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t
))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (1
3//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t)
)[28] - 4(u(t))[27])^2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ ((7
.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(
t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t
))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1
 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)
*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27]
 - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) 
/ ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + 
(13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] 
- 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29]
 - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2
))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] 
+ (u(t))[28] - 2(u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[26] - 0.966
6666666666667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27
] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27
] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u
(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)
*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(
t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t)
)[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28
])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u
(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t
))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[29] - 2.9(u(t))[27
] - 7.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29]
 - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + 
(13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] 
- 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(
t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (0
.9666666666666667(u(t))[29] + 5.316666666666667(u(t))[27] - 3.3833333333333
337(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u
(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26
] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
7] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u
(t))[28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[2
8])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)))*(u(t))[2
7], Differential(t)((u(t))[28]) ~ ((3.3833333333333337(u(t))[27] - 0.966666
6666666667(u(t))[26] - 5.316666666666667(u(t))[28]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2
(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4
(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13
//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((
3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))
[28] - 2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9(u(t))[2
9]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2
) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[
29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[
30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2
))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[
27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (2.9(u(t))[28] + 7.25(u(t))[27] -
 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4
(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[
27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2
(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[
27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45
(u(t))[30] - 2.9(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[
28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[
27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(
((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 
2(u(t))[29])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))[28]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[
27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2
(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4
(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (
u(t))[29] - 2(u(t))[28])^2))^2)) + (0.9666666666666667(u(t))[30] + 5.316666
666666667(u(t))[28] - 3.3833333333333337(u(t))[29]) / ((0.3 / ((1.0e-6 + (1
//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] +
 (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - 
(u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13
//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((
3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))
[30] - 2(u(t))[29])^2))^2)))*(u(t))[28], 0 ~ 0.2(u(t))[1] + 2.0(u(t))[3] + 
(u(t))[5] - 0.2(u(t))[6] - (u(t))[2] - 2.0(u(t))[4], 0 ~ 0.2(u(t))[30] + 2.
0(u(t))[28] + (u(t))[26] - 0.2(u(t))[25] - (u(t))[29] - 2.0(u(t))[27]], t, 
SymbolicUtils.Term{Real, Nothing}[(u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6
], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11], (u(t))[12]  …  
(u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(
t))[27], (u(t))[28], (u(t))[2], (u(t))[30]], Any[], Dict{Any, Any}(:u => u(
t)), Any[], Symbolics.Equation[(u(t))[29] ~ -0.017241379310344827 / (1 + t)
 + 0.25(u(t))[28] + 0.75(u(t))[30], (u(t))[1] ~ -0.022988505747126436 / (1 
+ t) + 1.3333333333333333(u(t))[2] - 0.3333333333333333(u(t))[3]], Base.Ref
Value{Vector{Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Sy
mbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef,
 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 
0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0
, 0)), :pdesys2, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 
0.5517241379310345, (u(t))[18] => 0.5862068965517241, (u(t))[8] => 0.241379
3103448276, (u(t))[10] => 0.3103448275862069, (u(t))[27] => 0.8965517241379
31, (u(t))[28] => 0.9310344827586207, (u(t))[2] => 0.034482758620689655, (u
(t))[24] => 0.7931034482758621, (u(t))[30] => 1.0, (u(t))[21] => 0.68965517
24137931…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCa
llback[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[], Sym
bolics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLi
nes.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLine
s.CenterAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.Cente
rAlignedGrid, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDES
ystem, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodOf
Lines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}(MethodOfLines.Va
riableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType
, Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, An
y}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{Symb
olicUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicU
tils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicU
tils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils
.Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, 
SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{
SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symboli
cs.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5],
 (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[21], (u(
t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))
[28], (u(t))[29], (u(t))[30]]), Dict{SymbolicUtils.Sym{Real, Base.Immutable
Dict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, B
ase.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0), Di
ct{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen
{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64
}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.Im
mutableDict{DataType, Any}}, Float64}(x => 0.034482758620689655), Dict{Symb
olicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1
, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{Symb
olicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1
, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,)))), MethodOf
Lines.MOLFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodOfLines.Sc
alarizedDiscretization}(Dict{Symbolics.Num, Int64}(x => 30), t, 2, MethodOf
Lines.WENOScheme(1.0e-6), MethodOfLines.CenterAlignedGrid(), true, false, M
ethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{
}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equatio
n[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symboli
cs.Equation[u(0, x) ~ x, Differential(x)(u(t, 0.0)) ~ 1 / (1 + t), Differen
tial(x)(u(t, 1.0)) ~ 1 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.Var
DomainPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symb
olics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{A
ny, Any}(), nothing, Any[], :pdesys2, nothing), false, Base.RefValue{Any}(n
othing)), ModelingToolkit.SystemStructures.TearingState{ModelingToolkit.ODE
System}(ModelingToolkit.ODESystem(Symbolics.Equation[Differential(t)((u(t))
[3]) ~ ((3.3833333333333337(u(t))[2] - 0.9666666666666667(u(t))[1] - 5.3166
66666666667(u(t))[3]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3]
 - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] 
+ (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (
u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^
2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//
4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2)) + (5.8(u(t))[2] + 14.5(u(
t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3
] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2]
 + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + 
(u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])
^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[
2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] - 7.25
(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[
2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4]
 - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 
4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[3] + 7.25(u(t))[2] - 1.
45(u(t))[1]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t)
)[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[
4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] 
- 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*(
(1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(
t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2)) + (5.316666666666667(u(t))[3] + 0.
9666666666666667(u(t))[5] - 3.3833333333333337(u(t))[4]) / ((0.3 / ((1.0e-6
 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] 
+ (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u
(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((
u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] +
 (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4]
)^2))^2)) + (2.9(u(t))[2] - 14.5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-
6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3]
 + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (
u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] -
 (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)))*(u
(t))[3], Differential(t)((u(t))[4]) ~ ((7.25(u(t))[3] + 2.9(u(t))[4] - 1.45
(u(t))[2]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[
3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5]
 - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 
4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t)
)[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 2.
9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))
[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5
] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] -
 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))
[5] - 2(u(t))[4])^2))^2)) + (3.3833333333333337(u(t))[3] - 0.96666666666666
67(u(t))[2] - 5.316666666666667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((
u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4
(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2
(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (0.
9666666666666667(u(t))[6] + 5.316666666666667(u(t))[4] - 3.3833333333333337
(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[
3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5]
 - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 
4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t)
)[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14.
5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))
[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5
] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] -
 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))
[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) 
/ ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1
//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[
4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])
^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1/
/4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((0.96
66666666666667(u(t))[7] + 5.316666666666667(u(t))[5] - 3.3833333333333337(u
(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)
*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] -
 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2
(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0
e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[
5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (3.3833333333333337(u(t))[4] - 0.966
6666666666667(u(t))[3] - 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (
1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u
(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))
[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1
.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t)
)[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(
t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2)
)^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u
(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t)
)[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t
))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(
t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(
u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(
t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))
^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13
//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t
))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(
u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.
45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] -
 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) +
 (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u
(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (
2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] 
- 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) 
+ (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (
u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2
) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[5], Diff
erential(t)((u(t))[6]) ~ ((3.3833333333333337(u(t))[5] - 0.9666666666666667
(u(t))[4] - 5.316666666666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u
(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13
//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))
[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(
t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(
u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(
u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (1
3//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t)
)[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + 
(13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)) + (1.45(u(t))[8] - 2
.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(
t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(
t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t
))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) 
+ (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.3166666666666
67(u(t))[6] + 0.9666666666666667(u(t))[8] - 3.3833333333333337(u(t))[7]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] +
 (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2
) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4
)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))
[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) 
/ ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))
[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6]
 + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1/
/4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t
))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t)
)[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6
] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))
[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t
))[6])^2))^2)))*(u(t))[6], Differential(t)((u(t))[7]) ~ ((3.383333333333333
7(u(t))[6] - 0.9666666666666667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((
0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] 
+ (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (
u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^
2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2)
 + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5
] - 4(u(t))[6])^2))^2)) + (0.9666666666666667(u(t))[9] + 5.316666666666667(
u(t))[7] - 3.3833333333333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2
) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1
//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))
[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(
t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (7.25
(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(
t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + 
(1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t
))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2
(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (2.
9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u
(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2)
)^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + 
(13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(
t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) 
+ (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[6] + 
14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(
t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u
(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(
t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*((
(u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))[7]
 - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) +
 (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u
(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))[7], Differential(t)((
u(t))[8]) ~ ((3.3833333333333337(u(t))[7] - 0.9666666666666667(u(t))[6] - 5
.316666666666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t
))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2)
)^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + 
(13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t
))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) 
+ (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (7.25(u(t))[7] +
 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + 
(u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(
((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u
(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2
(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (0.966666666
6666667(u(t))[10] + 5.316666666666667(u(t))[8] - 3.3833333333333337(u(t))[9
]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) 
+ (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u
(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t)
)[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 
+ (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] 
+ (u(t))[10] - 4(u(t))[9])^2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(
u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.
0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] 
- (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(
t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 
14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u
(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((
u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (
u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[
9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2)
 + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(
u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t
))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6
 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2)))*(u(t))[8], Differential(t)((u(t))[9]) ~ ((5.3166666666
66667(u(t))[9] + 0.9666666666666667(u(t))[11] - 3.3833333333333337(u(t))[10
]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + 
(13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (
u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(
t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0
e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t)
)[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] -
 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2
(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)
*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (
1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (3.383333333333333
7(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((
0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//
4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))
[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10]
)^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u
(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[1
0]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2
) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] 
+ (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u
(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.
0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[
10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) 
/ ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13
//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//
12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t
))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))
[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] 
+ (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t
))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^
2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6
 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9
] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] 
- (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(
t))[10] - 2(u(t))[9])^2))^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((7
.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)
*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[
8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[1
2] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(
t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[
9])^2))^2)) + (5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1
.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t
))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 
4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) 
+ (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4
)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t)
)[10])^2))^2)) + (3.3833333333333337(u(t))[9] - 0.9666666666666667(u(t))[8]
 - 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] +
 (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)
*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t)
)[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] -
 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + 
(0.9666666666666667(u(t))[12] + 5.316666666666667(u(t))[10] - 3.38333333333
33337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2
(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1
 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)
*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))
[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^
2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[
9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))
[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(
t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13
//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + 
(u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11
])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (1.45(u(
t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((
u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] -
 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) 
+ (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 
+ (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[1
0] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (
u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[1
1])^2))^2)))*(u(t))[10], Differential(t)((u(t))[11]) ~ ((3.3833333333333337
(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.316666666666667(u(t))[11]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1/
/4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u
(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u
(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u
(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))[1
1] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11]
 - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t)
)[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] -
 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t)
)[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (5.
8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(
((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))
[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))
[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((
3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[1
0] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))
^2)) + (5.316666666666667(u(t))[11] + 0.9666666666666667(u(t))[13] - 3.3833
333333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[1
2])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*((
(u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9
] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u
(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + 
(2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(
t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(
t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)
*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 
4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1/
/4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u
(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u
(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ (
(5.316666666666667(u(t))[12] + 0.9666666666666667(u(t))[14] - 3.38333333333
33337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) 
+ (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[
12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))
[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4
(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))
[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (1.45
(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[
12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))
[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((
3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 
4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[
11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4
(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 
2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (
u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u
(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//
12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (
u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + 
(u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[
13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2
) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (3.383333333
3333337(u(t))[11] - 0.9666666666666667(u(t))[10] - 5.316666666666667(u(t))[
12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(
((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))
[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t)
)[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^
2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (
1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 
14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - 
(u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1
//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] +
 (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[
13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))
[12]  …  Differential(t)((u(t))[21]) ~ ((3.3833333333333337(u(t))[20] - 0.9
666666666666667(u(t))[19] - 5.316666666666667(u(t))[21]) / ((0.6 / ((1.0e-6
 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22
] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19
] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2)
 + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (
u(t))[21] - 2(u(t))[20])^2))^2)) + (1.45(u(t))[23] - 2.9(u(t))[21] - 7.25(u
(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//
12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (
u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + 
(u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[
22])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2
) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2)) + (5.316666666
666667(u(t))[21] + 0.9666666666666667(u(t))[23] - 3.3833333333333337(u(t))[
22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])
^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))
[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))
[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^
2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (
1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2)) + (7.25(u(t))[20] +
 2.9(u(t))[21] - 1.45(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21]
 + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t
))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (1
3//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] 
+ (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t)
)[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])
^2))^2)) + (5.8(u(t))[20] + 14.5(u(t))[21] - 2.9(u(t))[22]) / ((0.1 / ((1.0
e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t
))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^
2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^
2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 
2(u(t))[21])^2))^2)) + (2.9(u(t))[20] - 14.5(u(t))[21] - 5.8(u(t))[22]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[
20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2
(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 
2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (
u(t))[22] - 2(u(t))[21])^2))^2)))*(u(t))[21], Differential(t)((u(t))[22]) ~
 ((5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + 
(u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (
u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13/
/12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*((
(u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[2
3])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[
22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] -
 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4
(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[
21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2
(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[
21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (3.38
33333333333337(u(t))[21] - 0.9666666666666667(u(t))[20] - 5.316666666666667
(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t)
)[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] +
 (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] +
 (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^
2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))
[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] -
 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2
) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t)
)[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - 
(u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) 
+ (0.9666666666666667(u(t))[24] + 5.316666666666667(u(t))[22] - 3.383333333
3333337(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] -
 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t)
)[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] -
 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t)
)[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t
))[22], Differential(t)((u(t))[23]) ~ ((1.45(u(t))[25] - 2.9(u(t))[23] - 7.
25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (
13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23]
 + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23]
 + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(
t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24]
)^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.31666
6666666667(u(t))[23] + 0.9666666666666667(u(t))[25] - 3.3833333333333337(u(
t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//1
2)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u
(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u
(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[2
4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) 
+ (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23
] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
2] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2)
 + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[
23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + 
(u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[
22])^2))^2)) + (3.3833333333333337(u(t))[22] - 0.9666666666666667(u(t))[21]
 - 5.316666666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - 
(u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1
//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1
//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] +
 (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t)
)[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^
2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e
-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[
24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))
[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2
) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2
(u(t))[23])^2))^2)) + (5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) / ((
0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[2
2] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(
u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(
u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*(
(1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u
(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[23], Differential(t)((u(t))[24]) ~ 
((3.3833333333333337(u(t))[23] - 0.9666666666666667(u(t))[22] - 5.316666666
666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2)
 + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-
6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))
[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 
4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (0.9
666666666666667(u(t))[26] + 5.316666666666667(u(t))[24] - 3.383333333333333
7(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(
t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)
*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25]
)^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(t
))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26]
 - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24
] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(
t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22
] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(
t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.1
 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)
*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(
t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t
))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.
0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t)
)[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))
[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*
(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t)
)[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t
))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + 
(1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[23] -
 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] -
 (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (
1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] 
+ (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))
[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t)
)[24], Differential(t)((u(t))[25]) ~ ((5.316666666666667(u(t))[25] + 0.9666
666666666667(u(t))[27] - 3.3833333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23
] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
5] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u
(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + 
(13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//1
2)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(
t))[27] - 4(u(t))[26])^2))^2)) + (7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t
))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24
])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(
u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25
])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) +
 (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[27
] - 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[2
5] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(
u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) +
 (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 
+ (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[2
5] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[2
6])^2))^2)) + (3.3833333333333337(u(t))[24] - 0.9666666666666667(u(t))[23] 
- 5.316666666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + 
(u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))
[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13/
/12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + 
(u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[
23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2
))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))
[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2)
)^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2
) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1/
/4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(
u(t))[25])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//
12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (
u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u
(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(
t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[25], Differential(t)((u(t))[26]) ~ (
(3.3833333333333337(u(t))[25] - 0.9666666666666667(u(t))[24] - 5.3166666666
66667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 
2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1
//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2
(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))
[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (1.45
(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*
(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))
[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t)
)[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(
((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 
4(u(t))[27])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / (
(0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1
//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] +
 (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - 
(u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] + 7.25(u(t))[25] - 1.45(u
(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))
[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / 
((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((
3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[
26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2
) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[2
5] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))
[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4
(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[
25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u
(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + 
(5.316666666666667(u(t))[26] + 0.9666666666666667(u(t))[28] - 3.38333333333
33337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 
2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1
//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2
(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))
[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)))*(u(t))
[26], Differential(t)((u(t))[27]) ~ ((7.25(u(t))[26] + 2.9(u(t))[27] - 1.45
(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t)
)[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] +
 (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] 
+ (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t)
)[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^
2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))
[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] -
 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2
) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e
-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t)
)[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - 
(u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) 
+ (3.3833333333333337(u(t))[26] - 0.9666666666666667(u(t))[25] - 5.31666666
6666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (
13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] -
 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t)
)[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.
9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)
*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t)
)[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t)
)[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*
(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
))^2)) + (1.45(u(t))[29] - 2.9(u(t))[27] - 7.25(u(t))[28]) / ((0.3 / ((1.0e
-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t)
)[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] -
 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2
) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1
3//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] +
 (u(t))[29] - 4(u(t))[28])^2))^2)) + (0.9666666666666667(u(t))[29] + 5.3166
66666666667(u(t))[27] - 3.3833333333333337(u(t))[28]) / ((0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25]
 + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] 
- (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + 
(1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t
))[29] - 4(u(t))[28])^2))^2)))*(u(t))[27], Differential(t)((u(t))[28]) ~ ((
3.3833333333333337(u(t))[27] - 0.9666666666666667(u(t))[26] - 5.31666666666
6667(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) +
 (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[2
6] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[2
8] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(
u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[2
7])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (5.8(u
(t))[27] + 14.5(u(t))[28] - 2.9(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[2
8] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29
])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((
u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27
] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^
2)) + (2.9(u(t))[28] + 7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[2
6] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27
] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) +
 (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4
)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u
(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[30] - 2.9(u(t))[28] - 7.25(u(
t))[29]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//1
2)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u
(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u
(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[2
9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) 
+ (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)) + (2.9(u(t))[27
] - 5.8(u(t))[29] - 14.5(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27
] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) +
 (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[2
8] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(
t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (
0.9666666666666667(u(t))[30] + 5.316666666666667(u(t))[28] - 3.383333333333
3337(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(
u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[2
7] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[2
8] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(
u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[2
9])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)))*(u(t))[
28], 0 ~ 0.2(u(t))[1] + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - (u(t))[2]
 - 2.0(u(t))[4], 0 ~ 0.2(u(t))[30] + 2.0(u(t))[28] + (u(t))[26] - 0.2(u(t))
[25] - (u(t))[29] - 2.0(u(t))[27]], t, SymbolicUtils.Term{Real, Nothing}[(u
(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], 
(u(t))[10], (u(t))[11], (u(t))[12]  …  (u(t))[21], (u(t))[22], (u(t))[23], 
(u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[2], (u(t
))[30]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t)
)[29] ~ -0.017241379310344827 / (1 + t) + 0.25(u(t))[28] + 0.75(u(t))[30], 
(u(t))[1] ~ -0.022988505747126436 / (1 + t) + 1.3333333333333333(u(t))[2] -
 0.3333333333333333(u(t))[3]], Base.RefValue{Vector{Symbolics.Num}}(Symboli
cs.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.Ref
Value{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbol
ics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symboli
cs.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys2, ModelingToolkit.ODE
System[], Dict{Any, Any}((u(t))[17] => 0.5517241379310345, (u(t))[18] => 0.
5862068965517241, (u(t))[8] => 0.2413793103448276, (u(t))[10] => 0.31034482
75862069, (u(t))[27] => 0.896551724137931, (u(t))[28] => 0.9310344827586207
, (u(t))[2] => 0.034482758620689655, (u(t))[24] => 0.7931034482758621, (u(t
))[30] => 1.0, (u(t))[21] => 0.6896551724137931…), nothing, nothing, nothin
g, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.SymbolicConti
nuousCallback(Symbolics.Equation[], Symbolics.Equation[])], ModelingToolkit
.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}(), MethodO
fLines.DiscreteSpace{1, 1, MethodOfLines.CenterAlignedGrid}, MethodOfLines.
MOLFiniteDifference{MethodOfLines.CenterAlignedGrid, MethodOfLines.Scalariz
edDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{Any}, MethodOfL
ines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1, MethodOfLi
nes.CenterAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUtil
s.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sy
m{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Float64}}(x => (
0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{T
uple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{Da
taType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple,
 Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataTy
pe, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.Immutab
leDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.Immuta
bleDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t
))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u
(t))[9], (u(t))[10]  …  (u(t))[21], (u(t))[22], (u(t))[23], (u(t))[24], (u(
t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30]]), Dict
{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{F
loat64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}}
(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.Immu
tableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float6
4}, Base.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0
), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Float64
}(x => 0.034482758620689655), Dict{SymbolicUtils.Term{Real, Base.ImmutableD
ict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x)
 => CartesianIndices((30,))), Dict{SymbolicUtils.Term{Real, Base.ImmutableD
ict{DataType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x)
 => CartesianIndices((30,)))), MethodOfLines.MOLFiniteDifference{MethodOfLi
nes.CenterAlignedGrid, MethodOfLines.ScalarizedDiscretization}(Dict{Symboli
cs.Num, Int64}(x => 30), t, 2, MethodOfLines.WENOScheme(1.0e-6), MethodOfLi
nes.CenterAlignedGrid(), true, false, MethodOfLines.ScalarizedDiscretizatio
n(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), Mode
lingToolkit.PDESystem(Symbolics.Equation[Differential(x)(u(t, x))*u(t, x) +
 Differential(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, Differentia
l(x)(u(t, 0.0)) ~ 1 / (1 + t), Differential(x)(u(t, 1.0)) ~ 1 / (1 + t)], S
ymbolics.VarDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symboli
cs.VarDomainPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, 
x)], SciMLBase.NullParameters(), Dict{Any, Any}(), nothing, Any[], :pdesys2
, nothing), false, Base.RefValue{Any}(nothing)), nothing, ModelingToolkit.S
ubstitutions(Symbolics.Equation[(u(t))[29] ~ -0.017241379310344827 / (1 + t
) + 0.25(u(t))[28] + 0.75(u(t))[30], (u(t))[1] ~ -0.022988505747126436 / (1
 + t) + 1.3333333333333333(u(t))[2] - 0.3333333333333333(u(t))[3]], [Int64[
], Int64[]], Symbolics.Equation[Differential(t)((u(t))[3]) ~ ((0.0222222222
22222223 / (1 + t) + 2.094444444444445(u(t))[2] - 4.994444444444445(u(t))[3
]) / ((0.1 / ((1.0e-6 + (1//4)*((-0.022988505747126436 / (1 + t) + 2.666666
6666666665(u(t))[3] - 2.666666666666667(u(t))[2])^2) + (13//12)*((-0.022988
505747126436 / (1 + t) + 0.6666666666666667(u(t))[3] - 0.6666666666666667(u
(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13
//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))
[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((-0.022988505747126436 / (1 + 
t) + 2.6666666666666665(u(t))[3] - 2.666666666666667(u(t))[2])^2) + (13//12
)*((-0.022988505747126436 / (1 + t) + 0.6666666666666667(u(t))[3] - 0.66666
66666666667(u(t))[2])^2))^2)) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4
]) / ((0.3 / ((1.0e-6 + (1//4)*((-0.022988505747126436 / (1 + t) + 2.666666
6666666665(u(t))[3] - 2.666666666666667(u(t))[2])^2) + (13//12)*((-0.022988
505747126436 / (1 + t) + 0.6666666666666667(u(t))[3] - 0.6666666666666667(u
(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13
//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))
[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (
13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (0.0333333333333333
3 / (1 + t) + 3.3833333333333333(u(t))[3] + 5.316666666666666(u(t))[2]) / (
(0.3 / ((1.0e-6 + (1//4)*((-0.022988505747126436 / (1 + t) + 2.666666666666
6665(u(t))[3] - 2.666666666666667(u(t))[2])^2) + (13//12)*((-0.022988505747
126436 / (1 + t) + 0.6666666666666667(u(t))[3] - 0.6666666666666667(u(t))[2
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*
(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 
2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((-0.022988505747126436 / (1 + t) + 2
.6666666666666665(u(t))[3] - 2.666666666666667(u(t))[2])^2) + (13//12)*((-0
.022988505747126436 / (1 + t) + 0.6666666666666667(u(t))[3] - 0.66666666666
66667(u(t))[2])^2))^2)) + (2.9(u(t))[2] - 14.5(u(t))[3] - 5.8(u(t))[4]) / (
(0.1 / ((1.0e-6 + (1//4)*((-0.022988505747126436 / (1 + t) + 2.666666666666
6665(u(t))[3] - 2.666666666666667(u(t))[2])^2) + (13//12)*((-0.022988505747
126436 / (1 + t) + 0.6666666666666667(u(t))[3] - 0.6666666666666667(u(t))[2
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*
(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 
2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12
)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (5.316666666666667(u(t))[
3] + 0.9666666666666667(u(t))[5] - 3.3833333333333337(u(t))[4]) / ((0.3 / (
(1.0e-6 + (1//4)*((-0.022988505747126436 / (1 + t) + 2.6666666666666665(u(t
))[3] - 2.666666666666667(u(t))[2])^2) + (13//12)*((-0.022988505747126436 /
 (1 + t) + 0.6666666666666667(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))
[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3]
 + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[
4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[5] - 2.
9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1.0e-6 + (1//4)*((-0.02298850574712
6436 / (1 + t) + 2.6666666666666665(u(t))[3] - 2.666666666666667(u(t))[2])^
2) + (13//12)*((-0.022988505747126436 / (1 + t) + 0.6666666666666667(u(t))[
3] - 0.6666666666666667(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)
 + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13/
/12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(
u(t))[4])^2))^2)))*(u(t))[3], Differential(t)((u(t))[4]) ~ ((3.383333333333
3337(u(t))[3] - 0.9666666666666667(u(t))[2] - 5.316666666666667(u(t))[4]) /
 ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1/
/4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^
2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t)
)[2] - 4(u(t))[3])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) 
/ ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1
//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[
4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])
^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1/
/4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t)
)[4])^2))^2)) + (0.9666666666666667(u(t))[6] + 5.316666666666667(u(t))[4] -
 3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (
u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u
(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2)
 + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[6] 
- 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] +
 (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(
u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^
2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t))[3]
 + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] 
+ (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(
((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2
(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (7.25(u(t))[3] + 2.9(u(t))
[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] 
- 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] +
 (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u
(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4
)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)))*(u(t))[4], Differential(t
)((u(t))[5]) ~ ((3.3833333333333337(u(t))[4] - 0.9666666666666667(u(t))[3] 
- 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u
(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u
(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(
t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2)
 + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] +
 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u
(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((
u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(
t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u
(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (0.9666666666666667(u(t))[7]
 + 5.316666666666667(u(t))[5] - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6
] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] -
 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0
.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*
((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t)
)[6])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((
1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))
[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3]
 - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4
)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(
t))[4])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(
t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//
4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2
)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(
t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[
6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))
[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(
t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))
^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~ ((2.9(u(t))[6] + 7.25(u(t))[5
] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) 
+ (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (
u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t
))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))
^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)
*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (3.3833333333333337(u(t))[
5] - 0.9666666666666667(u(t))[4] - 5.316666666666667(u(t))[6]) / ((0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t
))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5
] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//1
2)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2)) + (5.316666666666667(u(t))[6] + 0.9666666666666667(u(t))[8]
 - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (
u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*((
(u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(
u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^
2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[8
] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] 
+ (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*
(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[
5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] 
- (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)
*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//1
2)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t
))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] 
- 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (
u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], Differential(t)((u(t))[7]) 
~ ((3.3833333333333337(u(t))[6] - 0.9666666666666667(u(t))[5] - 5.316666666
666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + 
(13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1
//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(
t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t)
)[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((
3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7
] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) 
+ (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (
u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t
))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*
((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))
[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2)
 + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + 
(u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(
t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2)
)^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] 
+ (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(
t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*
(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(
u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e
-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(t))[9] + 5.3166
66666666667(u(t))[7] - 3.3833333333333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t
))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))
[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.
0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t
))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))
^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(
t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))
[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t)
)[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t
))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)))*(u(t))[
7], Differential(t)((u(t))[8]) ~ ((7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t)
)[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u
(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e
-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6
] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25
(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))
[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7]
 - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*(
(1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u
(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (3.3833333333333337(u(t))[7] -
 0.9666666666666667(u(t))[6] - 5.316666666666667(u(t))[8]) / ((0.3 / ((1.0e
-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[
8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8]
 + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[
7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)
*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[
8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t)
)[7])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1
.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t
))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t
))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13
//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(
t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))
[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1
.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t
))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.966
6666666666667(u(t))[10] + 5.316666666666667(u(t))[8] - 3.3833333333333337(u
(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9
])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9]
 - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 
4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t
))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)))*(u(t))[8], Differential(t)((u(t))
[9]) ~ ((2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + 
(u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*
(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[
9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t)
)[8])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / 
((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3
(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) +
 (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))
[11] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[8] - 0.966666666666
6667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(
((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11
] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] 
- 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))
[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1
//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(
t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t)
)[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((
u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] -
 (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) +
 (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t)
)[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))
[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t)
)[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(
t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (5.
316666666666667(u(t))[9] + 0.9666666666666667(u(t))[11] - 3.383333333333333
7(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))
[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(
t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4
)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)))*(u(t))[9], Differential
(t)((u(t))[10]) ~ ((5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((
3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[1
2] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11]
)^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2
(u(t))[10])^2))^2)) + (7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0
.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)
*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)
*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t)
)[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[
11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10
] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.2
5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t
))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t
))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) +
 (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)) + (3.383333333333
3337(u(t))[9] - 0.9666666666666667(u(t))[8] - 5.316666666666667(u(t))[10]) 
/ ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (
1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(
t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u
(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t
))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 
14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(
u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (
u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[
11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u
(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (0.9666666666666667(u(t))[12]
 + 5.316666666666667(u(t))[10] - 3.3833333333333337(u(t))[11]) / ((0.3 / ((
1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(
t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] -
 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2)
 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (
u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Differential(t)((u(t))[11]) ~
 ((2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(
u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(
u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//
4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] 
- 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[10] - 0.9666666666666667
(u(t))[9] - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u
(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] -
 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2
) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t)
)[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[
10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / (
(1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(
u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11]
)^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12]
)^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 +
 (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) /
 ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t)
)[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] -
 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] -
 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (
u(t))[12] - 2(u(t))[11])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u
(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[
10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(
t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12
])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) +
 (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (5.31666666666
6667(u(t))[11] + 0.9666666666666667(u(t))[13] - 3.3833333333333337(u(t))[12
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((
u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[1
3] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[1
1] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//1
2)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[11], Differenti
al(t)((u(t))[12]) ~ ((5.316666666666667(u(t))[12] + 0.9666666666666667(u(t)
)[14] - 3.3833333333333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2)
)^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2
) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))
[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] +
 (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))
[13])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + 
(u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))
[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t)
)[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e
-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t)
)[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12]
 - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2
) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e
-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t)
)[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] -
 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t
))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.
8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(
((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))
[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*(
(3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2
))^2)) + (3.3833333333333337(u(t))[11] - 0.9666666666666667(u(t))[10] - 5.3
16666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))
[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*(
(3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t)
)[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)
) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 
2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] -
 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (
1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(
((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))
[12])^2))^2)))*(u(t))[12]  …  Differential(t)((u(t))[21]) ~ ((1.45(u(t))[23
] - 2.9(u(t))[21] - 7.25(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20
] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) +
 (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 
+ (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[2
1] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (
u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[2
2])^2))^2)) + (5.316666666666667(u(t))[21] + 0.9666666666666667(u(t))[23] -
 3.3833333333333337(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] +
 (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))
[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13/
/12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + 
(u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))
[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2
))^2)) + (3.3833333333333337(u(t))[20] - 0.9666666666666667(u(t))[19] - 5.3
16666666666667(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))
[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*
(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t)
)[23] - 4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] -
 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)
) + (7.25(u(t))[20] + 2.9(u(t))[21] - 1.45(u(t))[19]) / ((0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21]
 + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] 
- (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)
 + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (
13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*
((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t
))[21] - 2(u(t))[20])^2))^2)) + (5.8(u(t))[20] + 14.5(u(t))[21] - 2.9(u(t))
[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22]
)^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t)
)[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t)
)[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])
^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t)
)[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[20] - 14.5(u(t))[21]
 - 5.8(u(t))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2)
 + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))
[19] + (u(t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 
4(u(t))[22])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13/
/12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)))*(u(t))[21], Differen
tial(t)((u(t))[22]) ~ ((3.3833333333333337(u(t))[21] - 0.9666666666666667(u
(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] 
- 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^
2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t
))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] 
+ (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t
))[21])^2))^2)) + (5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)
*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t)
)[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t)
)[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))
[23] - 2(u(t))[22])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[2
2]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2
) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[
23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[
24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2
))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[
21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] -
 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4
(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[
21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2
(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[
21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (1.45
(u(t))[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))
[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[
23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(
((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.316666666666667(u(
t))[22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] 
- 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^
2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t
))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] 
+ (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t
))[23])^2))^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~ ((3.383333333333
3337(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.316666666666667(u(t))[23]
) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u
(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((
u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21
] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25
] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//
4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (5.8(u(t))[22] + 14.
5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(
t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4
)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u
(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24]
)^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (2.9(u(t
))[22] - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t
))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])
^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22]
)^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(
t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] 
- (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)
) + (5.316666666666667(u(t))[23] + 0.9666666666666667(u(t))[25] - 3.3833333
333333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])
^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(
t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25]
 - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(
t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (
2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(
t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u
(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//1
2)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21
] - 4(u(t))[22])^2))^2)) + (1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]
) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u
(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((
u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21
] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25
] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))
^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//
12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t))[23], Different
ial(t)((u(t))[24]) ~ ((1.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[
23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4
(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((
3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t
))[24] - 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t)
)[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])
^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))
[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] -
 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))
 + (5.8(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] +
 (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] 
+ (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t)
)[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13
//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[
24])^2))^2)) + (3.3833333333333337(u(t))[23] - 0.9666666666666667(u(t))[22]
 - 5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - 
(u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1
//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] +
 (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t)
)[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^
2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e
-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[
25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))
[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^
2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2
(u(t))[24])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.316666666666667(u(t
))[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t
))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] -
 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] 
- 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t)
)[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] 
+ (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t)
)[25])^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ ((7.25(u(t))[24] 
+ 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25]
 + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(
t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u
(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24]
 + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t
))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24]
)^2))^2)) + (5.316666666666667(u(t))[25] + 0.9666666666666667(u(t))[27] - 3
.3833333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u
(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[2
4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[
26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u
(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[2
7] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))
^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[
23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
4] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2)
 + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (
u(t))[27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t))[24] - 0.966666
6666666667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] +
 (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - 
(u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1
//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((
3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))
[25] - 2(u(t))[24])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[2
6]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2
) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e
-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t)
)[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2
))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[
24] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 
14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(
u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[2
4] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(
u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[25], Differenti
al(t)((u(t))[26]) ~ ((2.9(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((
0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1/
/4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13
//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + 
(u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (
u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*(
(1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3
(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t)
)[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[
26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[2
7] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) +
 (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[28
] - 2.9(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[
24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(
u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2
(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[2
5] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (
u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[2
7])^2))^2)) + (5.316666666666667(u(t))[26] + 0.9666666666666667(u(t))[28] -
 3.3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] +
 (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))
[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t)
)[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + 
(u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))
[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2
))^2)) + (3.3833333333333337(u(t))[25] - 0.9666666666666667(u(t))[24] - 5.3
16666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t
))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])
^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27]
)^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] 
- 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)
) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (
13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] 
+ (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26]
 + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t
))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (1
3//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(
((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))
[26])^2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ ((3.38333333333333
37(u(t))[26] - 0.9666666666666667(u(t))[25] - 5.316666666666667(u(t))[27]) 
/ ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + 
(13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] 
- 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.017241379310344827 / (
1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.
017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28]
)^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + 
(13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (7.25(u(t))[26]
 + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27
] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u
(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 
3.75(u(t))[28])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t)
)[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27
] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u
(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//1
2)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(
t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((-0.017241379310344827 / (1 + t)
 + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.017241
379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^
2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26]
 + (u(t))[28] - 2(u(t))[27])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.
5(u(t))[27]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t
))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] 
+ (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.017241379
310344827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) + (
13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1
.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (1
3//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (-0.0166666666666
66666 / (1 + t) + 0.725(u(t))[30] + 5.316666666666667(u(t))[27] - 3.1416666
66666667(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] 
- 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t
))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((-0.01
7241379310344827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])
^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[
27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((-0.017241379310344827 / (
1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.
017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28]
)^2))^2)) + (-0.024999999999999998 / (1 + t) + 1.0875(u(t))[30] - 2.9(u(t))
[27] - 6.8875(u(t))[28]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))
[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((
-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))
[28])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u
(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((-0.01724137931034482
7 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*
((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t)
)[28])^2))^2)))*(u(t))[27], Differential(t)((u(t))[28]) ~ ((0.0583333333333
3334 / (1 + t) + 4.470833333333334(u(t))[28] - 1.5708333333333337(u(t))[30]
) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) 
+ (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((0.06896551724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^
2) + (13//12)*((0.034482758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[
30])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.017241379310344827 / (1 + t) + (u
(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-0.017241379310
344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((
1.0e-6 + (1//4)*((0.06896551724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))
[30])^2) + (13//12)*((0.034482758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(
u(t))[30])^2))^2)) + (3.3833333333333337(u(t))[27] - 0.9666666666666667(u(t
))[26] - 5.316666666666667(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((0.06896
551724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.0
34482758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*
(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
(0.017241379310344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[
30])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(
t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[
26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
))^2)) + (0.125 / (1 + t) - 3.9875(u(t))[30] - 4.7125(u(t))[28]) / ((0.3 / 
((1.0e-6 + (1//4)*((0.06896551724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t
))[30])^2) + (13//12)*((0.034482758620689655 / (1 + t) + 0.5(u(t))[28] - 0.
5(u(t))[30])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 
4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*((0.017241379310344827 / (1 + t) + (u(t))[27] - 0
.25(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-0.017241379310344827 / (1 
+ t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1/
/4)*((0.06896551724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + (
13//12)*((0.034482758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^2
))^2)) + (2.9(u(t))[28] + 7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t)
)[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.0689
6551724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.
034482758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*((0.017241379310344827 / (1 + t) + (u(t))[27] - 0.25(u(
t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-0.017241379310344827 / (1 + t) +
 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((
3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))
[28] - 2(u(t))[27])^2))^2)) + (0.09999999999999999 / (1 + t) + 2.9(u(t))[27
] - 4.35(u(t))[30] - 15.95(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((0.06896
551724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.0
34482758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*
(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
(0.017241379310344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[
30])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(
t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((0.017241379310344827 
/ (1 + t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-
0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[2
8])^2))^2)) + (0.049999999999999996 / (1 + t) + 5.8(u(t))[27] + 13.775(u(t)
)[28] - 2.175(u(t))[30]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))
[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^
2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.06896551724137931 / (1 + t) + 2.0(u(t)
)[28] - 2.0(u(t))[30])^2) + (13//12)*((0.034482758620689655 / (1 + t) + 0.5
(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.0172413793
10344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2) + (13
//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.7
5(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((0.017241379310344827 / (1 + t) + (
u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-0.01724137931
0344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2)))*
(u(t))[28], 0 ~ -0.004597701149425287 / (1 + t) + 1.9333333333333333(u(t))[
3] + (u(t))[5] - 0.2(u(t))[6] - 0.7333333333333334(u(t))[2] - 2.0(u(t))[4],
 0 ~ 0.017241379310344827 / (1 + t) + 1.75(u(t))[28] + (u(t))[26] - 0.2(u(t
))[25] - 0.55(u(t))[30] - 2.0(u(t))[27]])), Any[(u(t))[3], (u(t))[4], (u(t)
)[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))[11], (
u(t))[12]  …  Differential(t)((u(t))[21]), Differential(t)((u(t))[22]), Dif
ferential(t)((u(t))[23]), Differential(t)((u(t))[24]), Differential(t)((u(t
))[25]), Differential(t)((u(t))[26]), Differential(t)((u(t))[27]), Differen
tial(t)((u(t))[28]), (u(t))[2], (u(t))[30]], ModelingToolkit.SystemStructur
es.SystemStructure(ModelingToolkit.SystemStructures.DiffGraph(Union{Nothing
, Int64}[27, 28, 29, 30, 31, 32, 33, 34, 35, 36  …  nothing, nothing, nothi
ng, nothing, nothing, nothing, nothing, nothing, nothing, nothing], Union{N
othing, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, nothin
g, nothing, nothing, nothing  …  19, 20, 21, 22, 23, 24, 25, 26, nothing, n
othing]), ModelingToolkit.SystemStructures.DiffGraph(Union{Nothing, Int64}[
nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, not
hing, nothing  …  nothing, nothing, nothing, nothing, nothing, nothing, not
hing, nothing, nothing, nothing], Union{Nothing, Int64}[nothing, nothing, n
othing, nothing, nothing, nothing, nothing, nothing, nothing, nothing  …  n
othing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, noth
ing, nothing]), BipartiteGraph with (28, 54) (𝑠,𝑑)-vertices
   #  src                    dst
  1   [1, 2, 3, 27, 53]      [1, 2, 3, 27]
  2   [1, 2, 3, 4, 28, 53]   [1, 2, 3, 4, 27]
  3   [1, 2, 3, 4, 5, 29]    [1, 2, 3, 4, 5, 27]
  4   [2, 3, 4, 5, 6, 30]    [2, 3, 4, 5, 6, 27]
  5   [3, 4, 5, 6, 7, 31]    [3, 4, 5, 6, 7]
  6   [4, 5, 6, 7, 8, 32]    [4, 5, 6, 7, 8]
  7   [5, 6, 7, 8, 9, 33]    [5, 6, 7, 8, 9]
  8   [6, 7, 8, 9, 10, 34]   [6, 7, 8, 9, 10]
  9   [7, 8, 9, 10, 11, 35]  [7, 8, 9, 10, 11]
  ⋮                          
 46   ⋅                      [20]
 47   ⋅                      [21]
 48   ⋅                      [22]
 49   ⋅                      [23]
 50   ⋅                      [24]
 51   ⋅                      [25]
 52   ⋅                      [26]
 53   ⋅                      [1, 2, 27]
 54   ⋅                      [25, 26, 28], BipartiteGraph with (30, 56) (𝑠,
𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 48   ⋅    ∅
 49   ⋅    [30]
 50   ⋅    [30]
 51   ⋅    [30]
 52   ⋅    [28, 30]
 53   ⋅    [27, 29]
 54   ⋅    [27, 29]
 55   ⋅    [28, 30]
 56   ⋅    [28, 30]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equat
ion[(u(t))[29] ~ -0.017241379310344827 / (1 + t) + 0.25(u(t))[28] + 0.75(u(
t))[30], (u(t))[1] ~ -0.022988505747126436 / (1 + t) + 1.3333333333333333(u
(t))[2] - 0.3333333333333333(u(t))[3]], [Int64[], Int64[]], Symbolics.Equat
ion[Differential(t)((u(t))[3]) ~ ((0.022222222222222223 / (1 + t) + 2.09444
4444444445(u(t))[2] - 4.994444444444445(u(t))[3]) / ((0.1 / ((1.0e-6 + (1//
4)*((-0.022988505747126436 / (1 + t) + 2.6666666666666665(u(t))[3] - 2.6666
66666666667(u(t))[2])^2) + (13//12)*((-0.022988505747126436 / (1 + t) + 0.6
666666666666667(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4
] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] -
 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((
1.0e-6 + (1//4)*((-0.022988505747126436 / (1 + t) + 2.6666666666666665(u(t)
)[3] - 2.666666666666667(u(t))[2])^2) + (13//12)*((-0.022988505747126436 / 
(1 + t) + 0.6666666666666667(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2)
) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//
4)*((-0.022988505747126436 / (1 + t) + 2.6666666666666665(u(t))[3] - 2.6666
66666666667(u(t))[2])^2) + (13//12)*((-0.022988505747126436 / (1 + t) + 0.6
666666666666667(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4
] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] -
 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))
[4] - 2(u(t))[3])^2))^2)) + (0.03333333333333333 / (1 + t) + 3.383333333333
3333(u(t))[3] + 5.316666666666666(u(t))[2]) / ((0.3 / ((1.0e-6 + (1//4)*((-
0.022988505747126436 / (1 + t) + 2.6666666666666665(u(t))[3] - 2.6666666666
66667(u(t))[2])^2) + (13//12)*((-0.022988505747126436 / (1 + t) + 0.6666666
666666667(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(
u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t
))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6
 + (1//4)*((-0.022988505747126436 / (1 + t) + 2.6666666666666665(u(t))[3] -
 2.666666666666667(u(t))[2])^2) + (13//12)*((-0.022988505747126436 / (1 + t
) + 0.6666666666666667(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2)) + (2
.9(u(t))[2] - 14.5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (1//4)*((-
0.022988505747126436 / (1 + t) + 2.6666666666666665(u(t))[3] - 2.6666666666
66667(u(t))[2])^2) + (13//12)*((-0.022988505747126436 / (1 + t) + 0.6666666
666666667(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(
u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t
))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6
 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 
2(u(t))[3])^2))^2)) + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(t)
)[5] - 3.3833333333333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//4)*((-0.022988
505747126436 / (1 + t) + 2.6666666666666665(u(t))[3] - 2.666666666666667(u(
t))[2])^2) + (13//12)*((-0.022988505747126436 / (1 + t) + 0.666666666666666
7(u(t))[3] - 0.6666666666666667(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4
)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))
[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) 
/ ((0.1 / ((1.0e-6 + (1//4)*((-0.022988505747126436 / (1 + t) + 2.666666666
6666665(u(t))[3] - 2.666666666666667(u(t))[2])^2) + (13//12)*((-0.022988505
747126436 / (1 + t) + 0.6666666666666667(u(t))[3] - 0.6666666666666667(u(t)
)[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//1
2)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5]
 - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))
[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)))*(u(t))[3]
, Differential(t)((u(t))[4]) ~ ((3.3833333333333337(u(t))[3] - 0.9666666666
666667(u(t))[2] - 5.316666666666667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)
*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2]
 - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2)
 + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4]
 - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) +
 (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12
)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2
] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] +
 (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])
^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (0.966666666
6666667(u(t))[6] + 5.316666666666667(u(t))[4] - 3.3833333333333337(u(t))[5]
) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + 
(1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t)
)[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5
])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u
(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[
5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) 
+ (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(
t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))
[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))
[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2)
 + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t)
)[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2
(u(t))[4])^2))^2)) + (7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((
3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))
^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] -
 4(u(t))[3])^2))^2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((3.383333333
3333337(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.316666666666667(u(t))[5]
) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t)
)[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u
(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t
))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))
[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u
(t))[5])^2))^2)) + (0.9666666666666667(u(t))[7] + 5.316666666666667(u(t))[5
] - 3.3833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - 
(u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(
((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((
u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4
(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6]
)^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[5
] + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] 
- (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] -
 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4
])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))
[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5
] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))
[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12
)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] 
- 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//
12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[7] - 2.9(u(
t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3
] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4
] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1
//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)))*(u(t))[5], Differentia
l(t)((u(t))[6]) ~ ((2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(
t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))
[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13
//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u
(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2
(u(t))[5])^2))^2)) + (3.3833333333333337(u(t))[5] - 0.9666666666666667(u(t)
)[4] - 5.316666666666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6]
 + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)
*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5
])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.3166666
66666667(u(t))[6] + 0.9666666666666667(u(t))[8] - 3.3833333333333337(u(t))[
7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))
[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + 
(u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t)
)[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2)
 + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(
u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t
))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] 
+ (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t
))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u
(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2
(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(
t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-
6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2)
)^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + 
(13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^
2))^2)))*(u(t))[6], Differential(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))
[6] - 0.9666666666666667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t)
)[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9
] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//
4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u
(t))[6])^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(
t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t)
)[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13
//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4
(u(t))[6])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u
(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (1
3//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u
(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2)
)^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(
u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t
))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(
t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (
u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^
2))^2)) + (0.9666666666666667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.383
3333333333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7
] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] +
 (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8]
)^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13
//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[6] - 14.5(
u(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8
])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[
7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5]
 + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2)))*(u(t))[7], Differential(t)((u(t))[8
]) ~ ((7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (
13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (
u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t
))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(
t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (
u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^
2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-
6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8
] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] 
+ (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t
))[9])^2))^2)) + (3.3833333333333337(u(t))[7] - 0.9666666666666667(u(t))[6]
 - 5.316666666666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + 
(u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2
) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2
(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[7
] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))
[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] 
- 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(
t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[1
0] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[
7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] 
+ (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t)
)[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.
316666666666667(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] 
+ (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (
u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*((
(u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))
[9])^2))^2)))*(u(t))[8], Differential(t)((u(t))[9]) ~ ((2.9(u(t))[9] + 7.25
(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t)
)[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) +
 (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2
(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (1.45(u(t))[
11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))
[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u
(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t
))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t
))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] -
 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) 
+ (3.3833333333333337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.3166666666
66667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(
u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*
(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(
t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7
] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1
//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(
t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(
((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[
9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] 
- 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(
t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (5.316666666666667(u(t))[9] + 0
.9666666666666667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[
7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9]
 + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t)
)[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13/
/12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] 
- 4(u(t))[10])^2))^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((5.8(u(t)
)[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t
))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(
u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(
u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] 
+ (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[
11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (7.25(
u(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((
u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] -
 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] -
 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[
9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u
(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^
2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0
e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))
[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9]
 - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)
 + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + 
(1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t
))[12] - 4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[9] - 0.9666666666
666667(u(t))[8] - 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12
)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))
[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11]
)^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(
t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))
[9])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((
1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(
t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2)
 + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2))^2)) + (0.9666666666666667(u(t))[12] + 5.316666666666667(u(t))[1
0] - 3.3833333333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8
] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t)
)[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[1
2] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))
^2)))*(u(t))[10], Differential(t)((u(t))[11]) ~ ((2.9(u(t))[11] + 7.25(u(t)
)[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12
])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((
u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((
(u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9]
 - 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(
t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (3.
3833333333333337(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.31666666666666
7(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + 
(u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))
[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2
) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10
] - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[
9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(
t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (
13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11]
 + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t)
)[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.
8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(
((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))
[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))
[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((
3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[1
0] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))
^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[1
1] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10]
 - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2
) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + 
(13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)
*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(
t))[13] - 2(u(t))[12])^2))^2)) + (5.316666666666667(u(t))[11] + 0.966666666
6666667(u(t))[13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//
4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u
(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u
(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4
)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13]
 - 2(u(t))[12])^2))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ ((5.3166
66666666667(u(t))[12] + 0.9666666666666667(u(t))[14] - 3.3833333333333337(u
(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//
12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (
u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + 
(u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[
13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2
) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (2.9(u(t))[1
2] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2)
)^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2
) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))
[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))
[11])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + 
(u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))
[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t)
)[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e
-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t)
)[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12]
 - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2)
 + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-
6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))
[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 
4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13/
/12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (3.3833333333333337
(u(t))[11] - 0.9666666666666667(u(t))[10] - 5.316666666666667(u(t))[12]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))
[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 
4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] -
 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*(
(3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(
t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[
13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / 
((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((
3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))
[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2)
 + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …
  Differential(t)((u(t))[21]) ~ ((1.45(u(t))[23] - 2.9(u(t))[21] - 7.25(u(t
))[22]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12
)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(
t))[21] - 2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u
(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) 
+ (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2)) + (5.31666666666
6667(u(t))[21] + 0.9666666666666667(u(t))[23] - 3.3833333333333337(u(t))[22
]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2
) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[2
2] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[1
9] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2)
)^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1/
/4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2)) + (3.3833333333333337
(u(t))[20] - 0.9666666666666667(u(t))[19] - 5.316666666666667(u(t))[21]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))
[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 
2(u(t))[20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] -
 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*
(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)) + (7.25(u(t))[20] + 2.9(u(
t))[21] - 1.45(u(t))[19]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t
))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*
(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t)
)[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] -
 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2)
) + (5.8(u(t))[20] + 14.5(u(t))[21] - 2.9(u(t))[22]) / ((0.1 / ((1.0e-6 + (
13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[21] 
+ (u(t))[23] - 4(u(t))[22])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[20] -
 (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (u(t))[19] - 4(u(t))[20])^2) + (1
3//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[20])^2))^2))*((1.0e-6 + (1//4)*(
((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))
[21])^2))^2)) + (2.9(u(t))[20] - 14.5(u(t))[21] - 5.8(u(t))[22]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (
u(t))[22] - 2(u(t))[21])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[21] + (
u(t))[19] - 4(u(t))[20])^2) + (13//12)*(((u(t))[19] + (u(t))[21] - 2(u(t))[
20])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))
[22])^2) + (1//4)*((3(u(t))[21] + (u(t))[23] - 4(u(t))[22])^2))^2))*((1.0e-
6 + (1//4)*(((u(t))[20] - (u(t))[22])^2) + (13//12)*(((u(t))[20] + (u(t))[2
2] - 2(u(t))[21])^2))^2)))*(u(t))[21], Differential(t)((u(t))[22]) ~ ((3.38
33333333333337(u(t))[21] - 0.9666666666666667(u(t))[20] - 5.316666666666667
(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t)
)[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] +
 (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] +
 (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^
2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (5.8(u(t))
[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] -
 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2
) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t)
)[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - 
(u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) 
+ (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + 
(u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (
u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13/
/12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*((
(u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[2
2])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[2
3])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[
20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] -
 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4
(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[
21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2
(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[
23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (0.96
66666666666667(u(t))[24] + 5.316666666666667(u(t))[22] - 3.3833333333333337
(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t)
)[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] +
 (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] +
 (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^
2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22],
 Differential(t)((u(t))[23]) ~ ((3.3833333333333337(u(t))[22] - 0.966666666
6666667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(
t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u
(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//1
2)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21
] - 4(u(t))[22])^2))^2)) + (5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(
t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u
(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21]
 - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25]
 - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^
2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22]
 + (u(t))[24] - 2(u(t))[23])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.
8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (1
3//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] 
+ (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] 
+ (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*
(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.316666666666667(u(t))
[23] + 0.9666666666666667(u(t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] 
+ (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21]
 + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t
))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t
))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.
0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(
t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[2
2] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])
^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(
t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25]
 - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u
(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (
1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(
t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u
(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.
3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//1
2)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u
(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25
] - 2(u(t))[24])^2))^2)))*(u(t))[23], Differential(t)((u(t))[24]) ~ ((1.45(
u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[2
4])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[
25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3
(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4
(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1
//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] +
 (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - 
(u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((
3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t
))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))
[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^
2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[
25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) 
+ (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (3.3833333333
333337(u(t))[23] - 0.9666666666666667(u(t))[22] - 5.316666666666667(u(t))[2
4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*((
(u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[
26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))
[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1
//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (2.9(u(t))[23] - 1
4.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (
u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1/
/4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13
//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + 
(u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[2
5])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (0.966
6666666666667(u(t))[26] + 5.316666666666667(u(t))[24] - 3.3833333333333337(
u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t)
)[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*(
(3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))
[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^
2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)))*(u(t))[24], 
Differential(t)((u(t))[25]) ~ ((7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))
[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])
^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(
t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (
13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.3166666666666
67(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.3833333333333337(u(t))[26])
 / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) +
 (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[2
5] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24
] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4
)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (1.45(u(t))[27] - 2.9
(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u
(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[2
4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u
(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[2
7] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))
^2)) + (3.3833333333333337(u(t))[24] - 0.9666666666666667(u(t))[23] - 5.316
666666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[
23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*((
(u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[
27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4
(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) 
+ (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + 
(u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] +
 (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))
[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13/
/12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[2
5])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((
u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[2
6])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26]
 - 2(u(t))[25])^2))^2)))*(u(t))[25], Differential(t)((u(t))[26]) ~ ((2.9(u(
t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*((
(u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[2
4] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[
28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((
u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(
u(t))[25])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0
.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//
4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (
u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u
(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(
t))[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t
))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[2
5])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((
1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(
u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) 
+ (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.31666666666
6667(u(t))[26] + 0.9666666666666667(u(t))[28] - 3.3833333333333337(u(t))[27
]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2
) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))
[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2)
)^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1/
/4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (3.3833333333333337
(u(t))[25] - 0.9666666666666667(u(t))[24] - 5.316666666666667(u(t))[26]) / 
((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (
1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] 
+ (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] -
 (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*(
(3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(
t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t)
)[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])
^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))
[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2)
 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)))*(u(t))[26], D
ifferential(t)((u(t))[27]) ~ ((3.3833333333333337(u(t))[26] - 0.96666666666
66667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t)
)[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + 3(
u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.017241379310344827 / (1 + t)
 + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*
((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2))^2)) + (7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t)
)[25]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26]
)^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t
))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((-0.017241379310344
827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12
)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(
t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26]
)^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t
))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27]
 - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])
^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.
0e-6 + (1//4)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + 3(u(t))[
27] - 3.75(u(t))[28])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.7
5(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])
^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t
))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^
2))^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.017241379310344827 / (1 + t) + 0.75(u
(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.017241379310344
827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))
[28] - 2(u(t))[27])^2))^2)) + (-0.016666666666666666 / (1 + t) + 0.725(u(t)
)[30] + 5.316666666666667(u(t))[27] - 3.141666666666667(u(t))[28]) / ((0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)
*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t)
)[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((-0.017241379310344827 / (1 + t) +
 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.01724137
9310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2)
)*((1.0e-6 + (1//4)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + 3(
u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.017241379310344827 / (1 + t)
 + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2)) + (-0.024999999999
999998 / (1 + t) + 1.0875(u(t))[30] - 2.9(u(t))[27] - 6.8875(u(t))[28]) / (
(0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13
//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2
(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((-0.017241379310344827 / (1 +
 t) + 0.75(u(t))[30] + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.017
241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2
))^2))*((1.0e-6 + (1//4)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30]
 + 3(u(t))[27] - 3.75(u(t))[28])^2) + (13//12)*((-0.017241379310344827 / (1
 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2)))*(u(t))[27], 
Differential(t)((u(t))[28]) ~ ((0.05833333333333334 / (1 + t) + 4.470833333
333334(u(t))[28] - 1.5708333333333337(u(t))[30]) / ((0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u
(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.06896551724137
931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.0344827586
20689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*((0.017241379310344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] - 
0.75(u(t))[30])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t)
)[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((0.06896551
724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.0344
82758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2)) + (3.3833
333333333337(u(t))[27] - 0.9666666666666667(u(t))[26] - 5.316666666666667(u
(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((0.06896551724137931 / (1 + t) + 2.0
(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.034482758620689655 / (1 + t) 
+ 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.017241379310344827 / (1 +
 t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-0.0172
41379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2)
)^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (0.125 / (1 + t) - 
3.9875(u(t))[30] - 4.7125(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((0.068965
51724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.03
4482758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
0.017241379310344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[3
0])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t
))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((0.06896551724137931 / 
(1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.0344827586206896
55 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2)) + (2.9(u(t))[28] + 7.
25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + 
(u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))
[27])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.06896551724137931 / (1 + t) + 2.
0(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.034482758620689655 / (1 + t)
 + 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.0172
41379310344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2)
 + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27]
 - 1.75(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4
(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) 
+ (0.09999999999999999 / (1 + t) + 2.9(u(t))[27] - 4.35(u(t))[30] - 15.95(u
(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((0.06896551724137931 / (1 + t) + 2.0
(u(t))[28] - 2.0(u(t))[30])^2) + (13//12)*((0.034482758620689655 / (1 + t) 
+ 0.5(u(t))[28] - 0.5(u(t))[30])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.017241379310344827 / (1 +
 t) + (u(t))[27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-0.0172
41379310344827 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2)
)^2))*((1.0e-6 + (1//4)*((0.017241379310344827 / (1 + t) + (u(t))[27] - 0.2
5(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-0.017241379310344827 / (1 + 
t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2)) + (0.04999999999
9999996 / (1 + t) + 5.8(u(t))[27] + 13.775(u(t))[28] - 2.175(u(t))[30]) / (
(0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13
//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((0.06896551724137931 / (1 + t) + 2.0(u(t))[28] - 2.0(u(t))[30])^2) + 
(13//12)*((0.034482758620689655 / (1 + t) + 0.5(u(t))[28] - 0.5(u(t))[30])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.017241379310344827 / (1 + t) + (u(t))[
27] - 0.25(u(t))[28] - 0.75(u(t))[30])^2) + (13//12)*((-0.01724137931034482
7 / (1 + t) + 0.75(u(t))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2))*((1.0e-
6 + (1//4)*((0.017241379310344827 / (1 + t) + (u(t))[27] - 0.25(u(t))[28] -
 0.75(u(t))[30])^2) + (13//12)*((-0.017241379310344827 / (1 + t) + 0.75(u(t
))[30] + (u(t))[27] - 1.75(u(t))[28])^2))^2)))*(u(t))[28], 0 ~ -0.004597701
149425287 / (1 + t) + 1.9333333333333333(u(t))[3] + (u(t))[5] - 0.2(u(t))[6
] - 0.7333333333333334(u(t))[2] - 2.0(u(t))[4], 0 ~ 0.017241379310344827 / 
(1 + t) + 1.75(u(t))[28] + (u(t))[26] - 0.2(u(t))[25] - 0.55(u(t))[30] - 2.
0(u(t))[27]]))), [0.06896551724137931, 0.10344827586206896, 0.1379310344827
5862, 0.1724137931034483, 0.20689655172413793, 0.2413793103448276, 0.275862
06896551724, 0.3103448275862069, 0.3448275862068966, 0.3793103448275862  … 
 0.6896551724137931, 0.7241379310344828, 0.7586206896551724, 0.793103448275
8621, 0.8275862068965517, 0.8620689655172413, 0.896551724137931, 0.93103448
27586207, 0.034482758620689655, 1.0], (0.0, 20.0), SciMLBase.NullParameters
(), Base.Pairs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLB
ase.StandardODEProblem())
 SciMLBase.ODEProblem{Vector{Float64}, Tuple{Float64, Float64}, true, SciML
Base.NullParameters, SciMLBase.ODEFunction{true, SciMLBase.AutoSpecialize, 
ModelingToolkit.var"#f#464"{RuntimeGeneratedFunctions.RuntimeGeneratedFunct
ion{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingTool
kit.var"#_RGF_ModTag", (0xc7a79f3c, 0x0209e1b4, 0x65c9074a, 0x5da521d3, 0x3
c6f82f6)}, RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋a
rg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#
_RGF_ModTag", (0x3b14dbba, 0x4a8b2394, 0x509cce59, 0xa7ebaef5, 0xce5f7dab)}
}, Matrix{Float64}, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, N
othing, Nothing, Nothing, Nothing, Vector{Symbol}, Symbol, Nothing, Modelin
gToolkit.var"#472#generated_observed#471"{Bool, ModelingToolkit.ODESystem, 
Dict{Any, Any}}, Nothing, ModelingToolkit.ODESystem}, Base.Pairs{Symbol, Un
ion{}, Tuple{}, NamedTuple{(), Tuple{}}}, SciMLBase.StandardODEProblem}(Sci
MLBase.ODEFunction{true, SciMLBase.AutoSpecialize, ModelingToolkit.var"#f#4
64"{RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :
t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (
0xc7a79f3c, 0x0209e1b4, 0x65c9074a, 0x5da521d3, 0x3c6f82f6)}, RuntimeGenera
tedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), Model
ingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0x3b14dbb
a, 0x4a8b2394, 0x509cce59, 0xa7ebaef5, 0xce5f7dab)}}, Matrix{Float64}, Noth
ing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing, Nothing
, Nothing, Vector{Symbol}, Symbol, Nothing, ModelingToolkit.var"#472#genera
ted_observed#471"{Bool, ModelingToolkit.ODESystem, Dict{Any, Any}}, Nothing
, ModelingToolkit.ODESystem}(ModelingToolkit.var"#f#464"{RuntimeGeneratedFu
nctions.RuntimeGeneratedFunction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.va
r"#_RGF_ModTag", ModelingToolkit.var"#_RGF_ModTag", (0xc7a79f3c, 0x0209e1b4
, 0x65c9074a, 0x5da521d3, 0x3c6f82f6)}, RuntimeGeneratedFunctions.RuntimeGe
neratedFunction{(:ˍ₋out, :ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_M
odTag", ModelingToolkit.var"#_RGF_ModTag", (0x3b14dbba, 0x4a8b2394, 0x509cc
e59, 0xa7ebaef5, 0xce5f7dab)}}(RuntimeGeneratedFunctions.RuntimeGeneratedFu
nction{(:ˍ₋arg1, :ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingT
oolkit.var"#_RGF_ModTag", (0xc7a79f3c, 0x0209e1b4, 0x65c9074a, 0x5da521d3, 
0x3c6f82f6)}(quote
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (+)((/)(-0.034482758620689655, (+)(1, t)), (g
etindex)(ˍ₋arg1, 29))
            var"(u(t))[1]" = (+)((/)(-0.034482758620689655, (+)(1, t)), (ge
tindex)(ˍ₋arg1, 28))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:444 =#
                (SymbolicUtils.Code.create_array)(typeof(ˍ₋arg1), nothing, 
Val{1}(), Val{(29,)}(), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666
66666667, var"(u(t))[1]"), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 28)))
, (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 1))), (*)((+)((+)((/)(0.1, (^)
((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), v
ar"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 
2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), var"(u(t))[1]"), (getind
ex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)),
 (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 2))), 2))), (/)((+)((+)
((*)(5.8, (getindex)(ˍ₋arg1, 28)), (*)(14.5, (getindex)(ˍ₋arg1, 1))), (*)(-
2.9, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), var"(u(t))[1]"), (geti
ndex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)
), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getin
dex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (
*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getinde
x)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋ar
g1, 2)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 1)), (*)(1.4
5, (getindex)(ˍ₋arg1, 3))), (*)(-7.25, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)
((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"
(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(
-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)
(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex
)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2))
, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getind
ex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3))
, 2))), 2)))), (/)((+)((+)((*)(-1.45, var"(u(t))[1]"), (*)(2.9, (getindex)(
ˍ₋arg1, 1))), (*)(7.25, (getindex)(ˍ₋arg1, 28))), (*)((+)((+)((/)(0.3, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), va
r"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ
₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), var"(u(t))[1]"), (getinde
x)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), 
(*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 2))), 2)))), (/)((+)((+)
((*)(5.316666666666667, (getindex)(ˍ₋arg1, 1)), (*)(0.9666666666666667, (ge
tindex)(ˍ₋arg1, 3))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 2))), (*)
((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28)
)), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (g
etindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4,
 (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋a
rg1, 3)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 28)), (*)(-1
4.5, (getindex)(ˍ₋arg1, 1))), (*)(-5.8, (getindex)(ˍ₋arg1, 2))), (*)((+)((+
)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var
"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex
)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getinde
x)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)
), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1
, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (geti
ndex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), 2)))), (getindex)(ˍ₋arg1,
 1)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 28)
), (*)(7.25, (getindex)(ˍ₋arg1, 1))), (*)(2.9, (getindex)(ˍ₋arg1, 2))), (*)
((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋ar
g1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋a
rg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋a
rg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^
)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 28)), 2))), 2))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1,
 1)), (*)(-2.9, (getindex)(ˍ₋arg1, 3))), (*)(14.5, (getindex)(ˍ₋arg1, 2))),
 (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))
), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(
ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)
(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)
(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))
), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 28)), (*)(3.3833
333333333337, (getindex)(ˍ₋arg1, 1))), (*)(-5.316666666666667, (getindex)(ˍ
₋arg1, 2))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋ar
g1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3,
 (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex
)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2))
, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.3, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4
, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋
arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)
(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2)))), (/)((+)((+)((*)(0.9666
666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.3833333333333337, (getindex)(ˍ
₋arg1, 3))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^
)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (
getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), 
(getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4
, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋
arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 1)), (*)(-5
.8, (getindex)(ˍ₋arg1, 3))), (*)(-14.5, (getindex)(ˍ₋arg1, 2))), (*)((+)((+
)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4
, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))
), (getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)
), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3)
)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)(
(+)((*)(1.45, (getindex)(ˍ₋arg1, 4)), (*)(-2.9, (getindex)(ˍ₋arg1, 2))), (*
)(-7.25, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 
28)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg
1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), 
(getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (ge
tindex)(ˍ₋arg1, 2)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-3.38333333333
33337, (getindex)(ˍ₋arg1, 4)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 5
))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.6, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getin
dex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.3, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(
-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(
ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg
1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, 
(getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋
arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)),
 2))), 2))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 1)), (
*)(3.3833333333333337, (getindex)(ˍ₋arg1, 2))), (*)(-5.316666666666667, (ge
tindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.
6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (g
etindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.
3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4
)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getin
dex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋a
rg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (ge
tindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(-
2.9, (getindex)(ˍ₋arg1, 4)), (*)(5.8, (getindex)(ˍ₋arg1, 2))), (*)(14.5, (g
etindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (
getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (
getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (geti
ndex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋a
rg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 1)), (*)(2
.9, (getindex)(ˍ₋arg1, 3))), (*)(7.25, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)
((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), 
(/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), 
(getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)
), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-
4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ
₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 5)), (*)(
-2.9, (getindex)(ˍ₋arg1, 3))), (*)(-7.25, (getindex)(ˍ₋arg1, 4))), (*)((+)(
(+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1
)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)
), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (g
etindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)),
 (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex
)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 2)), (*
)(-5.8, (getindex)(ˍ₋arg1, 4))), (*)(-14.5, (getindex)(ˍ₋arg1, 3))), (*)((+
)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1,
 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 
2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), 
(getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (ge
tindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (getin
dex)(ˍ₋arg1, 3)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666666666
67, (getindex)(ˍ₋arg1, 2)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 3)))
, (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 4))), (*)((+)((+)((/)(0.1, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-
4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ
₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-
1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋
arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ
₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)
(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2
))), 2))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 3)), (*)(-14.5, (getinde
x)(ˍ₋arg1, 4))), (*)(-5.8, (getindex)(ˍ₋arg1, 5))), (*)((+)((+)((/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(
-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(
-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ
₋arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(
ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), 
(getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex
)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (
getindex)(ˍ₋arg1, 4)), (*)(-7.25, (getindex)(ˍ₋arg1, 5))), (*)(1.45, (getin
dex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (get
index)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (geti
ndex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (/)(0.3, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*
)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex
)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1
, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getin
dex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(5.31
6666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.3833333333333337, (getindex)(
ˍ₋arg1, 5))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)(
(/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5
)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)), (
/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (
getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), 
(getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4
, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋
arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 2)), (*)(
2.9, (getindex)(ˍ₋arg1, 4))), (*)(7.25, (getindex)(ˍ₋arg1, 3))), (*)((+)((+
)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)),
 (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)),
 (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5)))
, (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(
-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 5)), (*)
(5.8, (getindex)(ˍ₋arg1, 3))), (*)(14.5, (getindex)(ˍ₋arg1, 4))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2))
, (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2))
, (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))
), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getin
dex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (getindex
)(ˍ₋arg1, 4)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667,
 (getindex)(ˍ₋arg1, 3)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 4))), (
*)(-5.316666666666667, (getindex)(ˍ₋arg1, 5))), (*)((+)((+)((/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(
ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), 
(getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (
getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg
1, 7)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)
), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (geti
ndex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1,
 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2)))
, 2))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 7)), (*)(5.3
16666666666667, (getindex)(ˍ₋arg1, 5))), (*)(-3.3833333333333337, (getindex
)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getinde
x)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋a
rg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3
, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-
4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ
₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex
)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(-1.45, 
(getindex)(ˍ₋arg1, 3)), (*)(7.25, (getindex)(ˍ₋arg1, 4))), (*)(2.9, (getind
ex)(ˍ₋arg1, 5))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getin
dex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ
₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)
(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)
(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)
(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 
2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getinde
x)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(2.9, 
(getindex)(ˍ₋arg1, 4)), (*)(-14.5, (getindex)(ˍ₋arg1, 5))), (*)(-5.8, (geti
ndex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (get
index)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (get
index)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4))
, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((
+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getinde
x)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1
, 6)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 4)), (*)(14.5, 
(getindex)(ˍ₋arg1, 5))), (*)(-2.9, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)),
 (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(
0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((
+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (get
index)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (ge
tindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ
₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)
(1.45, (getindex)(ˍ₋arg1, 7)), (*)(-2.9, (getindex)(ˍ₋arg1, 5))), (*)(-7.25
, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)
), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))
), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^
)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (
getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex
)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6))
, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (getindex)(ˍ
₋arg1, 5)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667, (g
etindex)(ˍ₋arg1, 4)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 5))), (*)(
-5.316666666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.3, (^)((+)((
+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getinde
x)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1,
 8)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4,
 (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1,
 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getind
ex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1,
 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getind
ex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg
1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2
))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 4)), (*)(7.25, (getindex)(ˍ₋
arg1, 5))), (*)(2.9, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getind
ex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1
, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (g
etindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1,
 7)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1
, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getin
dex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋ar
g1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 
2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 7)), (*)(0.9
666666666666667, (getindex)(ˍ₋arg1, 8))), (*)(5.316666666666667, (getindex)
(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋a
rg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4
, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex
)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6))
, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3
, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋
arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(
ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(1.45, (g
etindex)(ˍ₋arg1, 8)), (*)(-2.9, (getindex)(ˍ₋arg1, 6))), (*)(-7.25, (getind
ex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(
ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)
(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.1, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*
)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)
(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)
(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 
2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getinde
x)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(2.9, 
(getindex)(ˍ₋arg1, 5)), (*)(-5.8, (getindex)(ˍ₋arg1, 7))), (*)(-14.5, (geti
ndex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex
)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (
*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), 
(*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getinde
x)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getinde
x)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1
, 7)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 7)), (*)(5.8, 
(getindex)(ˍ₋arg1, 5))), (*)(14.5, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)
(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (ge
tindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (get
index)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (ge
tindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ
₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (
getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (getindex)(ˍ₋ar
g1, 6)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.316666666666667, (getind
ex)(ˍ₋arg1, 7)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 9))), (*)(-3.38
33333333333337, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getind
ex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)))
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ
₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(
ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (
getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))),
 (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 7)), (*)(1.45, (getindex)(ˍ₋arg1,
 9))), (*)(-7.25, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)
(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9
)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex
)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex
)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)),
 (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))
)), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 5)), (*)(3.3833
333333333337, (getindex)(ˍ₋arg1, 6))), (*)(-5.316666666666667, (getindex)(ˍ
₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg
1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, 
(getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.1, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, 
(getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋ar
g1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋ar
g1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ
₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(2.9, (geti
ndex)(ˍ₋arg1, 6)), (*)(-14.5, (getindex)(ˍ₋arg1, 7))), (*)(-5.8, (getindex)
(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋a
rg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4
, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4
, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋
arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-
1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋
arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getin
dex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8))
, 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 5)), (*)(2.9, (get
index)(ˍ₋arg1, 7))), (*)(7.25, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), 
(*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getind
ex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋
arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-
4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getind
ex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7
)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (geti
ndex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7
)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 8)), (*)(5.8, (ge
tindex)(ˍ₋arg1, 6))), (*)(14.5, (getindex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.
3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)),
 (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getin
dex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ
₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(
-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getin
dex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋ar
g1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (get
index)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (getindex)(ˍ₋arg1,
 7)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 6))
, (*)(7.25, (getindex)(ˍ₋arg1, 7))), (*)(2.9, (getindex)(ˍ₋arg1, 8))), (*)(
(+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1
, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8))
, (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 
2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)(
(+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (ge
tindex)(ˍ₋arg1, 6)), 2))), 2))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 7)
), (*)(-2.9, (getindex)(ˍ₋arg1, 9))), (*)(14.5, (getindex)(ˍ₋arg1, 8))), (*
)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋ar
g1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8
)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2)))
, 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)))
, 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)
), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2)))), 
(/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 6)), (*)(3.38333333
33333337, (getindex)(ˍ₋arg1, 7))), (*)(-5.316666666666667, (getindex)(ˍ₋arg
1, 8))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8
)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (get
index)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋ar
g1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (get
index)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)((+)((+
)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex
)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1,
 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋ar
g1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666
666667, (getindex)(ˍ₋arg1, 10)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1
, 9))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)
), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)(
(+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getind
ex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋
arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(
-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (geti
ndex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (^)((+)((
+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getinde
x)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1
, 10)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 7)), (*)(-5.8,
 (getindex)(ˍ₋arg1, 9))), (*)(-14.5, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^
)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (
getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (g
etindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getind
ex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8))
, (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getinde
x)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2)))), (/)((+)((+)
((*)(1.45, (getindex)(ˍ₋arg1, 10)), (*)(-2.9, (getindex)(ˍ₋arg1, 8))), (*)(
-7.25, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)
), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ
₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2
)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2)
)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9
))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)),
 (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (ge
tindex)(ˍ₋arg1, 8)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666666
66667, (getindex)(ˍ₋arg1, 7)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 8
))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)),
 (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex
)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex
)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getin
dex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg
1, 7)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 9)), (*)(-7.25
, (getindex)(ˍ₋arg1, 10))), (*)(1.45, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)
((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))),
 (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)),
 (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10)
)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))
), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)),
 (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (ge
tindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1,
 10)), (*)(5.8, (getindex)(ˍ₋arg1, 8))), (*)(14.5, (getindex)(ˍ₋arg1, 9))),
 (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getind
ex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)
), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 1
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(
ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2)))
, 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 10)), (*)(
5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)(0.9666666666666667, (getind
ex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (get
index)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (g
etindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (ge
tindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)
(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)
), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+
)((*)(-1.45, (getindex)(ˍ₋arg1, 7)), (*)(2.9, (getindex)(ˍ₋arg1, 9))), (*)(
7.25, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg
1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg
1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))
), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg
1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (geti
ndex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)
), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/
)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 8)), (*)(-5.8, (getindex)(ˍ₋arg1, 10)
)), (*)(-14.5, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋
arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)),
 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10))
, 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 1
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋a
rg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (getindex)(ˍ₋arg1, 9)), (*)
((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 
10)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 12))), (*)(-3.383333333333
3337, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋a
rg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 
8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))
), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ
₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)
), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))
), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 10)), (*)(1.45, (getindex
)(ˍ₋arg1, 12))), (*)(-7.25, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (get
index)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.1
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)
), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (geti
ndex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getinde
x)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10))
, (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getin
dex)(ˍ₋arg1, 12)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 9))
, (*)(14.5, (getindex)(ˍ₋arg1, 10))), (*)(-2.9, (getindex)(ˍ₋arg1, 11))), (
*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11))
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)
(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋
arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 
12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 
2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 8)), (*)(2.9, (getin
dex)(ˍ₋arg1, 10))), (*)(7.25, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.6,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (ge
tindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.
3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9
)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (get
index)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)
), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (
^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), 
(getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getinde
x)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex
)(ˍ₋arg1, 8)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 9))), (*)(-5.3166
66666666667, (getindex)(ˍ₋arg1, 10))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 
9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ
₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8
)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12))
, 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (geti
ndex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg
1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 
2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 9)), (*)(-14.5, (getin
dex)(ˍ₋arg1, 10))), (*)(-5.8, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (g
etindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (ge
tindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getin
dex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10
)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (get
index)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (geti
ndex)(ˍ₋arg1, 10)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.966666666666
6667, (getindex)(ˍ₋arg1, 9)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 10
))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)
), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)
((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (get
index)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getinde
x)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11))
, (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12)
), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 2))
), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
0)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((
+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (g
etindex)(ˍ₋arg1, 9)), 2))), 2))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 1
0)), (*)(-5.8, (getindex)(ˍ₋arg1, 12))), (*)(-14.5, (getindex)(ˍ₋arg1, 11))
), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 
2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getind
ex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)
(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg
1, 13)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋ar
g1, 12)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 10)), (*)(-2
.9, (getindex)(ˍ₋arg1, 12))), (*)(14.5, (getindex)(ˍ₋arg1, 11))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1,
 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9
)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)
(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))
), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2)
)), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 13)), (*)(-2.9, (getind
ex)(ˍ₋arg1, 11))), (*)(-7.25, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.1
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10
)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+
)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (ge
tindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getind
ex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)
), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (
/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12
)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), 
(getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, (
getindex)(ˍ₋arg1, 13)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 12))), 
(*)(5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1, (^)((
+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (ge
tindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex
)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋
arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*
)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (ge
tindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getind
ex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 9)
), (*)(7.25, (getindex)(ˍ₋arg1, 10))), (*)(2.9, (getindex)(ˍ₋arg1, 11))), (
*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)
(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ
₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (g
etindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 
9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋ar
g1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex
)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)))), (getindex)(ˍ₋arg1, 11
)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667, (getindex)
(ˍ₋arg1, 10)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 11))), (*)(-5.316
666666666667, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1,
 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (geti
ndex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+)((+
)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋a
rg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)
(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)
), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+
)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋a
rg1, 10)), 2))), 2))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 10)), (*)(
2.9, (getindex)(ˍ₋arg1, 12))), (*)(7.25, (getindex)(ˍ₋arg1, 11))), (*)((+)(
(+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1
, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ
₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex
)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 1
4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋
arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (/)((+)((+)((*)(2.9, (ge
tindex)(ˍ₋arg1, 11)), (*)(-5.8, (getindex)(ˍ₋arg1, 13))), (*)(-14.5, (getin
dex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), 
(getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (ge
tindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1
, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11
)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(
ˍ₋arg1, 14)), (*)(-2.9, (getindex)(ˍ₋arg1, 12))), (*)(-7.25, (getindex)(ˍ₋a
rg1, 13))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(
-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getinde
x)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (
*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)
), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), 
(getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (geti
ndex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)(
(+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 13)), (*)(5.8, (getindex)(ˍ₋arg1, 11))
), (*)(14.5, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋
arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 
10)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋ar
g1, 13)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(
ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13))
, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋ar
g1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (g
etindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*
)(0.9666666666666667, (getindex)(ˍ₋arg1, 14)), (*)(-3.3833333333333337, (ge
tindex)(ˍ₋arg1, 13))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 12))), (*)
((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ
₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 1
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getind
ex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (get
index)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋ar
g1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 1
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getind
ex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (getindex)(ˍ₋arg1, 
12)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 13))
, (*)(-7.25, (getindex)(ˍ₋arg1, 14))), (*)(1.45, (getindex)(ˍ₋arg1, 15))), 
(*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 1
4)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1
, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (get
index)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (
getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1
, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (get
index)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)((+)((+)((*)(-
0.9666666666666667, (getindex)(ˍ₋arg1, 11)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 12))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 13))), (*)((
+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 
2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex
)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.3, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getin
dex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1
, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex
)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(-1.45
, (getindex)(ˍ₋arg1, 11)), (*)(2.9, (getindex)(ˍ₋arg1, 13))), (*)(7.25, (ge
tindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12)))
, (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 
2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋a
rg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 1
2))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 
2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 12)), (*)(-5.8, (getindex)(ˍ
₋arg1, 14))), (*)(-14.5, (getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getind
ex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), 
(*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (ge
tindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))),
 (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (ge
tindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/
)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 14)), (*)(5.316666666
666667, (getindex)(ˍ₋arg1, 13))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1
, 15))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ
₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)),
 (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getinde
x)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
3)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), 
(*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (ge
tindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getinde
x)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
4)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (/)((+)
((+)((*)(-2.9, (getindex)(ˍ₋arg1, 14)), (*)(5.8, (getindex)(ˍ₋arg1, 12))), 
(*)(14.5, (getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(
ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)
), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getin
dex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1,
 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋a
rg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (
getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1,
 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (geti
ndex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (getindex)(ˍ₋arg1
, 13)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 14
)), (*)(1.45, (getindex)(ˍ₋arg1, 16))), (*)(-7.25, (getindex)(ˍ₋arg1, 15)))
, (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 
12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getin
dex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋ar
g1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (g
etindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4,
 (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)
(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋ar
g1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)
(5.316666666666667, (getindex)(ˍ₋arg1, 14)), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 16))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 15))), (*)(
(+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getinde
x)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (geti
ndex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg
1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getinde
x)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))), (/)((+)((+)((*)(-1.4
5, (getindex)(ˍ₋arg1, 12)), (*)(7.25, (getindex)(ˍ₋arg1, 13))), (*)(2.9, (g
etindex)(ˍ₋arg1, 14))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))
), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 
13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))),
 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 13)), (*)(14.5, (getindex)(
ˍ₋arg1, 14))), (*)(-2.9, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.3, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(
-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getind
ex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (ge
tindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))),
 (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (ge
tindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (/
)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 12)), (*)(3.383333333
3333337, (getindex)(ˍ₋arg1, 13))), (*)(-5.316666666666667, (getindex)(ˍ₋arg
1, 14))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(
ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13))
, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getind
ex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)),
 (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (g
etindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getind
ex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+
)((+)((*)(2.9, (getindex)(ˍ₋arg1, 13)), (*)(-14.5, (getindex)(ˍ₋arg1, 14)))
, (*)(-5.8, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex
)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 1
4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg
1, 15)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ
₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)),
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg
1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (ge
tindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (getindex)(ˍ₋ar
g1, 14)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 1
4)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))), (*)(14.5, (getindex)(ˍ₋arg1, 15)))
, (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 
2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getind
ex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋ar
g1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (get
index)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((
*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)
(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (g
etindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋a
rg1, 16)), 2))), 2))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 17)), (*)(-
2.9, (getindex)(ˍ₋arg1, 15))), (*)(-7.25, (getindex)(ˍ₋arg1, 16))), (*)((+)
((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg
1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(
ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 
17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ
₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)(-0.9666
666666666667, (getindex)(ˍ₋arg1, 13)), (*)(3.3833333333333337, (getindex)(ˍ
₋arg1, 14))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)
((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 1
5))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋ar
g1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1
, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg
1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getin
dex)(ˍ₋arg1, 14)), (*)(-5.8, (getindex)(ˍ₋arg1, 16))), (*)(-14.5, (getindex
)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)
(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)),
 (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0
.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), 
(getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), 
(/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16
))), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)),
 (getindex)(ˍ₋arg1, 16)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, 
(getindex)(ˍ₋arg1, 17)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 16))),
 (*)(5.316666666666667, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (g
etindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getinde
x)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (get
index)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getin
dex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1
4)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16))
, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (get
index)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1,
 13)), (*)(7.25, (getindex)(ˍ₋arg1, 14))), (*)(2.9, (getindex)(ˍ₋arg1, 15))
), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)),
 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getin
dex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋a
rg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (
getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((
+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (ge
tindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)(
(*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex
)(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 1
5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (g
etindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (getindex)(ˍ₋
arg1, 15)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667, (g
etindex)(ˍ₋arg1, 14)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 15))), (*
)(-5.316666666666667, (getindex)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.1, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (get
index)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)
(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getin
dex)(ˍ₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (g
etindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), 
(getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getin
dex)(ˍ₋arg1, 14)), 2))), 2))), (/)((+)((+)((*)(0.9666666666666667, (getinde
x)(ˍ₋arg1, 18)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 17))), (*)(5.3
16666666666667, (getindex)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg
1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (ge
tindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getin
dex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ
₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getinde
x)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
7)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (
getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ
₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 17)), (*
)(5.8, (getindex)(ˍ₋arg1, 15))), (*)(14.5, (getindex)(ˍ₋arg1, 16))), (*)((+
)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2
))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2)))
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(
ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getind
ex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1,
 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)
), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 14)), (*)(2.9, (g
etindex)(ˍ₋arg1, 16))), (*)(7.25, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17))
, (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2)),
 (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 1
5))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg
1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2)
)), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 1
5))), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex
)(ˍ₋arg1, 18)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))), (*)(-7.25, (getindex)(ˍ
₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋
arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)
(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (ge
tindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
6)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16))
, (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (ge
tindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/
)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 15)), (*)(-5.8, (getindex)(ˍ₋arg1, 17
))), (*)(-14.5, (getindex)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)
(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg
1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ
₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getinde
x)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
7)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ
₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)),
 (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (getindex)(
ˍ₋arg1, 16)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667, 
(getindex)(ˍ₋arg1, 15)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 16))), 
(*)(-5.316666666666667, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (g
etindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getinde
x)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (get
index)(ˍ₋arg1, 18)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getin
dex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17
)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16))
, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (get
index)(ˍ₋arg1, 15)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 1
8)), (*)(5.8, (getindex)(ˍ₋arg1, 16))), (*)(14.5, (getindex)(ˍ₋arg1, 17))),
 (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getinde
x)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)
(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg
1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(
ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋ar
g1, 18)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg
1, 19)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 18))), (*)(5.316666666
666667, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1,
 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)),
 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex
)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg
1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (ge
tindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
9)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 15)), (*)(2.9, 
(getindex)(ˍ₋arg1, 17))), (*)(7.25, (getindex)(ˍ₋arg1, 16))), (*)((+)((+)((
/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16)
)), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)),
 (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))),
 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 
2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1,
 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getinde
x)(ˍ₋arg1, 16)), (*)(-5.8, (getindex)(ˍ₋arg1, 18))), (*)(-14.5, (getindex)(
ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ
₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*
)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (g
etindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))
), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (
getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg
1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 17))), (*)(-7.25, (getindex)(ˍ₋arg1, 
18))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (g
etindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)
(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)
), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (/)(0.3, (
^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)),
 (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (geti
ndex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg
1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4
, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (getindex
)(ˍ₋arg1, 17)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666666666666667
, (getindex)(ˍ₋arg1, 16)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 17)))
, (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getin
dex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)),
 (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (g
etindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (get
index)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17
)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (g
etindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1,
 18)), (*)(-7.25, (getindex)(ˍ₋arg1, 19))), (*)(1.45, (getindex)(ˍ₋arg1, 20
))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋ar
g1, 19)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ
₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)
((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getind
ex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ
₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)
((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 19)), (*)(5.316666666666667, (
getindex)(ˍ₋arg1, 18))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 20))), 
(*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex
)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2)), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1
, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (get
index)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (
getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ
₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1
, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)((*)(
-2.9, (getindex)(ˍ₋arg1, 19)), (*)(5.8, (getindex)(ˍ₋arg1, 17))), (*)(14.5,
 (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), 
(getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 
2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)
)), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)
(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋a
rg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (ge
tindex)(ˍ₋arg1, 16)), (*)(2.9, (getindex)(ˍ₋arg1, 18))), (*)(7.25, (getinde
x)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex
)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)),
 (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2)), (/)(
0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 
18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (geti
ndex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
8)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))))
, (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 17)), (*)(-5.8, (getindex)(ˍ₋arg1
, 19))), (*)(-14.5, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.6, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ
₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)),
 (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)), (/)(0.3, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-
4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getinde
x)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)
(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), 
(*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getinde
x)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
8)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (getind
ex)(ˍ₋arg1, 18)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666666666
67, (getindex)(ˍ₋arg1, 17)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 18)
)), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)
), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), 
(getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (g
etindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)
), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), 
(getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg
1, 19)), (*)(1.45, (getindex)(ˍ₋arg1, 21))), (*)(-7.25, (getindex)(ˍ₋arg1, 
20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋
arg1, 20)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)
(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)
), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (
^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)),
 (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (geti
ndex)(ˍ₋arg1, 21)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg
1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4
, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)))), (/)((+)((
+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 19)), (*)(0.9666666666666667, 
(getindex)(ˍ₋arg1, 21))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 20)))
, (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 
2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getind
ex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (g
etindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4,
 (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)
(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21
)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (ge
tindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)))), (/)((+)((+)((*
)(-1.45, (getindex)(ˍ₋arg1, 17)), (*)(7.25, (getindex)(ˍ₋arg1, 18))), (*)(2
.9, (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)
), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋
arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)),
 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 18)), (*)(14.5, (geti
ndex)(ˍ₋arg1, 19))), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.
1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
0)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (
getindex)(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)
), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 
18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)
), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))
)), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 18)), (*)(-14.5, (getindex)(ˍ₋a
rg1, 19))), (*)(-5.8, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)
(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)
), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)
(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getin
dex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getinde
x)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19))
, (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getin
dex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)))), (geti
ndex)(ˍ₋arg1, 19)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(5.8, (getindex)
(ˍ₋arg1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 21))), (*)(14.5, (getindex)(ˍ₋a
rg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (getindex
)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19
)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (geti
ndex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)
), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), 
(getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (get
index)(ˍ₋arg1, 21)), 2))), 2))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 2
2)), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), (*)(-7.25, (getindex)(ˍ₋arg1, 21))
), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (
getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1,
 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (geti
ndex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋a
rg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (
getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4
, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex
)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋a
rg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (
getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)))), (/)((+)((+)((
*)(-1.45, (getindex)(ˍ₋arg1, 18)), (*)(7.25, (getindex)(ˍ₋arg1, 19))), (*)(
2.9, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg
1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)
)), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21))
, 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 
22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getin
dex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6,
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ
₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20))
, 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 18))
, (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 19))), (*)(-5.316666666666667,
 (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 2
0))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 
2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2)
)), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)
(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg
1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)
)), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 19)), (*)(-5.8, (getinde
x)(ˍ₋arg1, 21))), (*)(-14.5, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)),
 (*)(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (ge
tindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21
))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2
))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)),
 (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))))
, (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 21)), (*)(0.96666
66666666667, (getindex)(ˍ₋arg1, 22))), (*)(5.316666666666667, (getindex)(ˍ₋
arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (getinde
x)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1
9)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (get
index)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(
0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20
)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)),
 (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (get
index)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)))), (ge
tindex)(ˍ₋arg1, 20)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-2.9, (getind
ex)(ˍ₋arg1, 21)), (*)(-7.25, (getindex)(ˍ₋arg1, 22))), (*)(1.45, (getindex)
(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)
), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (
/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21
)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (
getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (
/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 21)), (*)(-3.383333333
3333337, (getindex)(ˍ₋arg1, 22))), (*)(0.9666666666666667, (getindex)(ˍ₋arg
1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)
(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋
arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)
(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)),
 (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (g
etindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getind
ex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+
)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 19)), (*)(2.9, (getindex)(ˍ₋arg1, 21)))
, (*)(7.25, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 2
0)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getind
ex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)
(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg
1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ
₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)),
 (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)
(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg
1, 19)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg
1, 19)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 20))), (*)(-5.316666666
666667, (getindex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋a
rg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 1
9)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg
1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (ge
tindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋a
rg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 1
9)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 20)), (*)(-14.5, 
(getindex)(ˍ₋arg1, 21))), (*)(-5.8, (getindex)(ˍ₋arg1, 22))), (*)((+)((+)((
/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22
)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)
), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1,
 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋a
rg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 
2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2)))
, 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 22)), (*)(5.8, (getindex)
(ˍ₋arg1, 20))), (*)(14.5, (getindex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22)))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (g
etindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)))), (
getindex)(ˍ₋arg1, 21)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.96666666
66666667, (getindex)(ˍ₋arg1, 20)), (*)(3.3833333333333337, (getindex)(ˍ₋arg
1, 21))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 22))), (*)((+)((+)((/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23))
, (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)),
 (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 2
3))), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)
(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2)
)), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 2
2))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)((+)((+)((*)(0.96666666666666
67, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 22))
), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23))
, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (get
index)(ˍ₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getind
ex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21
)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (
/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23
)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), 
(getindex)(ˍ₋arg1, 24)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋a
rg1, 20)), (*)(7.25, (getindex)(ˍ₋arg1, 21))), (*)(2.9, (getindex)(ˍ₋arg1, 
22))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 2
4)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (g
etindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (get
index)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((
*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)
(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (geti
ndex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg
1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3
, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((
+)((*)(5.8, (getindex)(ˍ₋arg1, 21)), (*)(14.5, (getindex)(ˍ₋arg1, 22))), (*
)(-2.9, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1,
 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)),
 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex
)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg
1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (ge
tindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 2
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+)((+)((*)(1.4
5, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getindex)(ˍ₋arg1, 22))), (*)(-7.25, 
(getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 
21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)
), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))
), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))),
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ
₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)
), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))
), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 21)), (*)(-14.5, (getinde
x)(ˍ₋arg1, 22))), (*)(-5.8, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (get
index)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), 
(getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (g
etindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg
1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), 
(getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))),
 (getindex)(ˍ₋arg1, 22)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-3.383333
3333333337, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (getindex)(ˍ₋ar
g1, 23))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/
)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1,
 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)
), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), 
(getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 
2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 
24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)((+)((+)((*)(-1.45, (getinde
x)(ˍ₋arg1, 21)), (*)(7.25, (getindex)(ˍ₋arg1, 22))), (*)(2.9, (getindex)(ˍ₋
arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)
((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getinde
x)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
2)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (get
index)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)),
 (getindex)(ˍ₋arg1, 24)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (get
index)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (/)
((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 23)), (*)(-7.25, (getindex)(ˍ₋arg1, 2
4))), (*)(1.45, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (geti
ndex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg
1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ
₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋a
rg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(
-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getin
dex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ
₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ
₋arg1, 21)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 22))), (*)(-5.31666
6666666667, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex
)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 2
3)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg
1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1,
 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, 
(getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (geti
ndex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg
1, 23)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 22)), (*)(-5.
8, (getindex)(ˍ₋arg1, 24))), (*)(-14.5, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋
arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1
, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋ar
g1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 
2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 24)), (*)(5.8, (getin
dex)(ˍ₋arg1, 22))), (*)(14.5, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22))
, (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (g
etindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (geti
ndex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2
3)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2)))
), (getindex)(ˍ₋arg1, 23)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.9666
666666666667, (getindex)(ˍ₋arg1, 22)), (*)(3.3833333333333337, (getindex)(ˍ
₋arg1, 23))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 24))), (*)((+)((+)
((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 2
3))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)
), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))
), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg
1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getin
dex)(ˍ₋arg1, 24)), (*)(1.45, (getindex)(ˍ₋arg1, 26))), (*)(-7.25, (getindex
)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)
(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), 
(*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), 
(getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 2
3)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getin
dex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24
)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2)))),
 (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 23)), (*)(14.5, (getindex)(ˍ₋arg1,
 24))), (*)(-2.9, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+
)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getinde
x)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋a
rg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1
, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4,
 (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getin
dex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)
(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)
), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((
+)((*)(-1.45, (getindex)(ˍ₋arg1, 22)), (*)(2.9, (getindex)(ˍ₋arg1, 24))), (
*)(7.25, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1
, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getinde
x)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋ar
g1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (g
etindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 
22)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 23)), (*)(-14.5,
 (getindex)(ˍ₋arg1, 24))), (*)(-5.8, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)(
(/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23
))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2)))
, 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))
), 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 24)), (*)(0
.9666666666666667, (getindex)(ˍ₋arg1, 26))), (*)(-3.3833333333333337, (geti
ndex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24
)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25)
)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2)))
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg
1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (g
etindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2)
))), (getindex)(ˍ₋arg1, 24)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-1.45
, (getindex)(ˍ₋arg1, 23)), (*)(7.25, (getindex)(ˍ₋arg1, 24))), (*)(2.9, (ge
tindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25)))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 
2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋ar
g1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 2
5))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 
2))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getindex)(ˍ₋
arg1, 26))), (*)(14.5, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3
, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex
)(ˍ₋arg1, 25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (geti
ndex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getind
ex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)
), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (geti
ndex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)))), (/)(
(+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 23)), (*)(3.38333333333
33337, (getindex)(ˍ₋arg1, 24))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1,
 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 
27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (
getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2)), (/)(0.1, (^)((
+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3
, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex
)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (get
index)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex
)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24
)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)(
(+)((*)(2.9, (getindex)(ˍ₋arg1, 24)), (*)(-5.8, (getindex)(ˍ₋arg1, 26))), (
*)(-14.5, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg
1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)
), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (g
etindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 
23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getin
dex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋a
rg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (
getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1,
 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (geti
ndex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)((*)(1
.45, (getindex)(ˍ₋arg1, 27)), (*)(-2.9, (getindex)(ˍ₋arg1, 25))), (*)(-7.25
, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)),
 (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))),
 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)
(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋a
rg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex
)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 2
5)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2
))), 2)))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 27)), (*
)(-3.3833333333333337, (getindex)(ˍ₋arg1, 26))), (*)(5.316666666666667, (ge
tindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25)))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 
2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋ar
g1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), 
(getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 
2)))), (getindex)(ˍ₋arg1, 25)), (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(-0.
9666666666666667, (getindex)(ˍ₋arg1, 24)), (*)(3.3833333333333337, (getinde
x)(ˍ₋arg1, 25))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 26))), (*)((+)
((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2)
)), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(
ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getinde
x)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)
)), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)
), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), 
(getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg
1, 27)), (*)(5.8, (getindex)(ˍ₋arg1, 25))), (*)(14.5, (getindex)(ˍ₋arg1, 26
))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg
1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (ge
tindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ
₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)),
 (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (/)(0.1, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(
-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]
"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 
2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 24)), (*)(2.9, (geti
ndex)(ˍ₋arg1, 26))), (*)(7.25, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.
3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26))
, (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (
getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)
), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 
27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, 
(getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(
ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)((*)(1.45, var"(u(t))[30]"), (*)(-2.9
, (getindex)(ˍ₋arg1, 26))), (*)(-7.25, (getindex)(ˍ₋arg1, 27))), (*)((+)((+
)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))),
 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(
ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), 
(*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))
[30]"), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 25)), (*)(-5.8
, (getindex)(ˍ₋arg1, 27))), (*)(-14.5, (getindex)(ˍ₋arg1, 26))), (*)((+)((+
)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))),
 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(
ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)), (ge
tindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), 2)))), (/
)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 27)), (*)(0.966666666
6666667, var"(u(t))[30]")), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 26)))
, (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 
24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getin
dex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋ar
g1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (g
etindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (/)(0.1, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4,
 (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26))
, var"(u(t))[30]"), 2))), 2)))), (getindex)(ˍ₋arg1, 26)), (*)((+)((+)((+)((
+)((+)((/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 29)), (*)(5.3
16666666666667, (getindex)(ˍ₋arg1, 27))), (*)(-3.3833333333333337, var"(u(t
))[30]")), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-
1, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]")
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, (getinde
x)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg
1, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2)))
, 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"
), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getindex)
(ˍ₋arg1, 29)), 2))), 2))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(
ˍ₋arg1, 25)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 26))), (*)(-5.3166
66666666667, (getindex)(ˍ₋arg1, 27))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋
arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 
25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var
"(u(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u
(t))[30]"), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (
getindex)(ˍ₋arg1, 29)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ
₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*
)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((
+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 26)), (*)(-14.5, (getindex)(ˍ₋arg1, 27))
), (*)(-5.8, var"(u(t))[30]")), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 2
5)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25)), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))
[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))),
 (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30
]"), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)(
(+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getinde
x)(ˍ₋arg1, 29)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
var"(u(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2
))), 2)))), (/)((+)((+)((*)(-2.9, var"(u(t))[30]"), (*)(5.8, (getindex)(ˍ₋a
rg1, 26))), (*)(14.5, (getindex)(ˍ₋arg1, 27))), (*)((+)((+)((/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[30]"), (getindex)(ˍ₋arg1
, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (get
index)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋a
rg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 2
5)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2)))
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[
30]")), (getindex)(ˍ₋arg1, 29)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var
"(u(t))[30]"), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 25)),
 (*)(2.9, (getindex)(ˍ₋arg1, 27))), (*)(7.25, (getindex)(ˍ₋arg1, 26))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[
30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)), (
/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26)
)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 27)), (geti
ndex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2
7)), (*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2))), 2))), (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (get
index)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)
(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 29)), 
(*)(-2.9, (getindex)(ˍ₋arg1, 27))), (*)(-7.25, var"(u(t))[30]")), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1,
 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 2
6)), var"(u(t))[30]"), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 27)), (getindex)(
ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (
*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1
, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2))),
 2)))), (getindex)(ˍ₋arg1, 27)), (+)((+)((+)((+)((+)((*)(0.2, var"(u(t))[1]
"), (*)(-0.2, (getindex)(ˍ₋arg1, 4))), (*)(-1, (getindex)(ˍ₋arg1, 28))), (*
)(2.0, (getindex)(ˍ₋arg1, 1))), (*)(-2.0, (getindex)(ˍ₋arg1, 2))), (getinde
x)(ˍ₋arg1, 3)), (+)((+)((+)((+)((+)((*)(-0.2, (getindex)(ˍ₋arg1, 24)), (*)(
-1, var"(u(t))[30]")), (*)(-2.0, (getindex)(ˍ₋arg1, 26))), (*)(2.0, (getind
ex)(ˍ₋arg1, 27))), (*)(0.2, (getindex)(ˍ₋arg1, 29))), (getindex)(ˍ₋arg1, 25
)))
            end
        end
    end
end), RuntimeGeneratedFunctions.RuntimeGeneratedFunction{(:ˍ₋out, :ˍ₋arg1, 
:ˍ₋arg2, :t), ModelingToolkit.var"#_RGF_ModTag", ModelingToolkit.var"#_RGF_
ModTag", (0x3b14dbba, 0x4a8b2394, 0x509cce59, 0xa7ebaef5, 0xce5f7dab)}(quot
e
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:349 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:350 =#
    #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-ae0a-f4d2d93
7f953/packages/SymbolicUtils/qulQp/src/code.jl:351 =#
    begin
        begin
            var"(u(t))[30]" = (+)((/)(-0.034482758620689655, (+)(1, t)), (g
etindex)(ˍ₋arg1, 29))
            var"(u(t))[1]" = (+)((/)(-0.034482758620689655, (+)(1, t)), (ge
tindex)(ˍ₋arg1, 28))
            begin
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/Symbolics/FGTCH/src/build_function.jl:519 =#
                #= /cache/julia-buildkite-plugin/depots/5b300254-1738-4989-
ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:398 =# @inbounds
 begin
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:394 =#
                        ˍ₋out[1] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, var"(u(t))[1]"), (*)(3.3833333333333337, (getindex)(ˍ₋
arg1, 28))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 1))), (*)((+)((+)((
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u
(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ
₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(
ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), 
(getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), var"(u(t))[1]
"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 2))), 2))), 
(/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 28)), (*)(14.5, (getindex)(ˍ₋arg1, 
1))), (*)(-2.9, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), var"(u(t))[
1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 2))), 2)),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), 2))
), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)
), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (get
index)(ˍ₋arg1, 2)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 1
)), (*)(1.45, (getindex)(ˍ₋arg1, 3))), (*)(-7.25, (getindex)(ˍ₋arg1, 2))), 
(*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 
28))), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)),
 (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2)))
, (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(
-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(
ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(-1.45, var"(u(t))[1]"), (*)(2.9, 
(getindex)(ˍ₋arg1, 1))), (*)(7.25, (getindex)(ˍ₋arg1, 28))), (*)((+)((+)((/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(
t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋
arg1, 2)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ
₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (
getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 28)), var"(u(t))[1]"
), (getindex)(ˍ₋arg1, 1)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 28))), var"(u(t))[1]"), 2))), 2)))), 
(/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 1)), (*)(0.9666666666
666667, (getindex)(ˍ₋arg1, 3))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1
, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(
ˍ₋arg1, 28))), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg
1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋ar
g1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (ge
tindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 2
8)), (*)(-14.5, (getindex)(ˍ₋arg1, 1))), (*)(-5.8, (getindex)(ˍ₋arg1, 2))),
 (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 28)), var"(u(t))[1]"), (getindex)(ˍ₋arg1, 1)), 2))), (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1,
 28))), var"(u(t))[1]"), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 28)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28))
, (getindex)(ˍ₋arg1, 2)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1)), (*)(-4, (getindex)(ˍ₋arg1, 2))
), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 2)), (getin
dex)(ˍ₋arg1, 28)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), 2)))), (getind
ex)(ˍ₋arg1, 1))
                        ˍ₋out[2] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-1.45, (getindex)(ˍ₋arg1, 28)), (*)(7.25, (getindex)(ˍ₋arg1, 1))), (*)(2.9,
 (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (g
etindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1
, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2)), 
(/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3
)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), 
(/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), 
(getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋
arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(
3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2))), (/)((+)((+
)((*)(5.8, (getindex)(ˍ₋arg1, 1)), (*)(-2.9, (getindex)(ˍ₋arg1, 3))), (*)(1
4.5, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28))
, (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋
arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2
)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)
)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2
)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (geti
ndex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getin
dex)(ˍ₋arg1, 28)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 1))), (*)(-5.
316666666666667, (getindex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(
ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (
getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 2
8)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3
)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getinde
x)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)
), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ
₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 
2)))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.3
833333333333337, (getindex)(ˍ₋arg1, 3))), (*)(5.316666666666667, (getindex)
(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋
arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(
3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getind
ex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(
-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getinde
x)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(2.9, (
getindex)(ˍ₋arg1, 1)), (*)(-5.8, (getindex)(ˍ₋arg1, 3))), (*)(-14.5, (getin
dex)(ˍ₋arg1, 2))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex
)(ˍ₋arg1, 2)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), 
(*)(3, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (ge
tindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), 
(*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getind
ex)(ˍ₋arg1, 4)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg
1, 3)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 4)), (*)(-2.9
, (getindex)(ˍ₋arg1, 2))), (*)(-7.25, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)(
(/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 1)), (getindex)(ˍ₋arg1, 28)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1//4, 
(^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 1)), (*)(3, (getindex)(ˍ₋arg1, 2))),
 (getindex)(ˍ₋arg1, 28)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 1)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)),
 (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(-4, (getindex)(ˍ₋arg1, 3)))
, (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 2)), (*)(
-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(
ˍ₋arg1, 4)), 2))), 2)))), (getindex)(ˍ₋arg1, 2))
                        ˍ₋out[3] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-3.3833333333333337, (getindex)(ˍ₋arg1, 4)), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 5))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 3))), (*)((+)(
(+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)
), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (g
etindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)),
 (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex
)(ˍ₋arg1, 5)), 2))), 2))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(
ˍ₋arg1, 1)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 2))), (*)(-5.316666
666666667, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ
₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1
, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), 
(getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)
((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 4)), (*)(5.8, (getindex)(ˍ₋arg1, 2)))
, (*)(14.5, (getindex)(ˍ₋arg1, 3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(
ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ
₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))
), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg
1, 4))), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), 
(getindex)(ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋ar
g1, 1)), (*)(2.9, (getindex)(ˍ₋arg1, 3))), (*)(7.25, (getindex)(ˍ₋arg1, 2))
), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)
), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)
(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋ar
g1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5)), 2
))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1, 1)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 1))
, (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋a
rg1, 5)), (*)(-2.9, (getindex)(ˍ₋arg1, 3))), (*)(-7.25, (getindex)(ˍ₋arg1, 
4))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋arg1
, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (getin
dex)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1,
 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getind
ex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ
₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4
))), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ
₋arg1, 2)), (*)(-5.8, (getindex)(ˍ₋arg1, 4))), (*)(-14.5, (getindex)(ˍ₋arg1
, 3))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 2))), (getindex)(ˍ₋ar
g1, 1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2)), (get
index)(ˍ₋arg1, 1)), (getindex)(ˍ₋arg1, 3)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg
1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)
(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 3)), (*)(-4, (getindex)(ˍ₋arg1, 4))), (getindex)(ˍ₋arg1, 5
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 4)), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))),
 2)))), (getindex)(ˍ₋arg1, 3))
                        ˍ₋out[4] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 2)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 3))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 4))), (*)((+)
((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ
₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 
2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3
)), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5
))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (
*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getinde
x)(ˍ₋arg1, 4)), 2))), 2))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 3)), (*
)(-14.5, (getindex)(ˍ₋arg1, 4))), (*)(-5.8, (getindex)(ˍ₋arg1, 5))), (*)((+
)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1,
 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 
3)), (getindex)(ˍ₋arg1, 5)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 
5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 5)), (ge
tindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), 2)))), (/)((+
)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 4)), (*)(-7.25, (getindex)(ˍ₋arg1, 5))),
 (*)(1.45, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ
₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg
1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), 
(getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)
((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 4)), (*)(-3.383333333333
3337, (getindex)(ˍ₋arg1, 5))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 6
))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 
5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 
2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getinde
x)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getinde
x)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4
)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(
ˍ₋arg1, 2)), (*)(2.9, (getindex)(ˍ₋arg1, 4))), (*)(7.25, (getindex)(ˍ₋arg1,
 3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (
getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1
, 5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1
, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getin
dex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getin
dex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg1, 2)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1,
 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)
(ˍ₋arg1, 5)), (*)(5.8, (getindex)(ˍ₋arg1, 3))), (*)(14.5, (getindex)(ˍ₋arg1
, 4))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg
1, 5)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 4)), (*)(-4, (getindex)(ˍ₋arg1, 3))), (getindex)(ˍ₋arg
1, 2)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 3)), (geti
ndex)(ˍ₋arg1, 2)), (getindex)(ˍ₋arg1, 4)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 4)), (*)(-4, (geti
ndex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))),
 2)))), (getindex)(ˍ₋arg1, 4))
                        ˍ₋out[5] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 3)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 4))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 5))), (*)((+)
((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2
)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5
)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (
getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg
1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4))
, (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((
+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getinde
x)(ˍ₋arg1, 3)), 2))), 2))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(
ˍ₋arg1, 7)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 5))), (*)(-3.3833333
333333337, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)),
 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ
₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1,
 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2)))
, 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg
1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), 
(getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)
((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 3)), (*)(7.25, (getindex)(ˍ₋arg1, 4)
)), (*)(2.9, (getindex)(ˍ₋arg1, 5))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)
(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg
1, 3)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getind
ex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2)
)), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋a
rg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (get
index)(ˍ₋arg1, 5)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 
4)), (*)(3, (getindex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2)))), (
/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 4)), (*)(-14.5, (getindex)(ˍ₋arg1, 5
))), (*)(-5.8, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getinde
x)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex
)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2))),
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex)(ˍ₋
arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)
), (getindex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋a
rg1, 4)), (*)(14.5, (getindex)(ˍ₋arg1, 5))), (*)(-2.9, (getindex)(ˍ₋arg1, 6
))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 
6)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5)), 2
))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getindex
)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getinde
x)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg
1, 6)), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)
))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 7)), (*)(-2.9, (getindex)(ˍ₋a
rg1, 5))), (*)(-7.25, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.6, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ
₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (
getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (g
etindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1
, 7)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 3)), (getindex)(ˍ₋arg1, 5))
, 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 4)), (*)(3, (getin
dex)(ˍ₋arg1, 5))), (getindex)(ˍ₋arg1, 3)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 5)), (*)(-4, (getindex)(ˍ₋a
rg1, 6))), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))),
 2)))), (getindex)(ˍ₋arg1, 5))
                        ˍ₋out[6] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 4)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 5))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)
((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7
))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6
))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))),
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), 
(*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getinde
x)(ˍ₋arg1, 6)), 2))), 2))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 4)), 
(*)(7.25, (getindex)(ˍ₋arg1, 5))), (*)(2.9, (getindex)(ˍ₋arg1, 6))), (*)((+
)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 
7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 
5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 
6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)),
 (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getind
ex)(ˍ₋arg1, 6)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getinde
x)(ˍ₋arg1, 7)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 8))), (*)(5.3166
66666666667, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2)
)), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getin
dex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋a
rg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (get
index)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6
)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (
/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 8)), (*)(-2.9, (getindex)(ˍ₋arg1, 6
))), (*)(-7.25, (getindex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ
₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (ge
tindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(
ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(
ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (
getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2))))
, (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 5)), (*)(-5.8, (getindex)(ˍ₋arg1,
 7))), (*)(-14.5, (getindex)(ˍ₋arg1, 6))), (*)((+)((+)((/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)
(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 6)), (*)(-4, (getindex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8
)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (
getindex)(ˍ₋arg1, 5)), (*)(3, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex
)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex
)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1,
 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)
(ˍ₋arg1, 7)), (*)(5.8, (getindex)(ˍ₋arg1, 5))), (*)(14.5, (getindex)(ˍ₋arg1
, 6))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 6)), (*)(-4, (geti
ndex)(ˍ₋arg1, 7))), (getindex)(ˍ₋arg1, 8)), 2))), 2)), (/)(0.6, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg
1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (geti
ndex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 5)), (*)(3, (geti
ndex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 4)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 4)), (getindex)(ˍ₋arg1, 6
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 7)), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))),
 2)))), (getindex)(ˍ₋arg1, 6))
                        ˍ₋out[7] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
5.316666666666667, (getindex)(ˍ₋arg1, 7)), (*)(0.9666666666666667, (getinde
x)(ˍ₋arg1, 9))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 8))), (*)((+)(
(+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5
)), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (g
etindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), 
(/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8
)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)),
 (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex
)(ˍ₋arg1, 9)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 7)), (*
)(1.45, (getindex)(ˍ₋arg1, 9))), (*)(-7.25, (getindex)(ˍ₋arg1, 8))), (*)((+
)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 
8))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 
6))), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getind
ex)(ˍ₋arg1, 9)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getinde
x)(ˍ₋arg1, 5)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 6))), (*)(-5.316
666666666667, (getindex)(ˍ₋arg1, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0
e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋a
rg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)), 
2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋
arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6,
 (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋
arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))
), (getindex)(ˍ₋arg1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), 
(/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 6)), (*)(-14.5, (getindex)(ˍ₋arg1, 
7))), (*)(-5.8, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1
.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ
₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(
ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(
ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6
)), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(
ˍ₋arg1, 5)), (*)(2.9, (getindex)(ˍ₋arg1, 7))), (*)(7.25, (getindex)(ˍ₋arg1,
 6))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg
1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (geti
ndex)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(
ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (ge
tindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9)
), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(
ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋arg1, 5)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1,
 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)
(ˍ₋arg1, 8)), (*)(5.8, (getindex)(ˍ₋arg1, 6))), (*)(14.5, (getindex)(ˍ₋arg1
, 7))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(
3, (getindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 6))), (getindex)(ˍ₋ar
g1, 5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 6)), (get
index)(ˍ₋arg1, 5)), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)
(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 7)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 9
)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 8)), (getindex)(ˍ₋arg1, 6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))),
 2)))), (getindex)(ˍ₋arg1, 7))
                        ˍ₋out[8] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-1.45, (getindex)(ˍ₋arg1, 6)), (*)(7.25, (getindex)(ˍ₋arg1, 7))), (*)(2.9, 
(getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (get
index)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 
7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)
(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (g
etindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (
getindex)(ˍ₋arg1, 9)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋ar
g1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3,
 (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2))), (/)((+)((+)((
*)(5.8, (getindex)(ˍ₋arg1, 7)), (*)(-2.9, (getindex)(ˍ₋arg1, 9))), (*)(14.5
, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (g
etindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1
, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (
/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), 
(getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)),
 (getindex)(ˍ₋arg1, 9)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getinde
x)(ˍ₋arg1, 9)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex
)(ˍ₋arg1, 6)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 7))), (*)(-5.3166
66666666667, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋ar
g1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getin
dex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2
))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)
(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)
)), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋a
rg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13/
/12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (g
etindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1
, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)))),
 (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 10)), (*)(-3.383333
3333333337, (getindex)(ˍ₋arg1, 9))), (*)(5.316666666666667, (getindex)(ˍ₋ar
g1, 8))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 
8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (ge
tindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.1, (^)((+)((
+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getinde
x)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1
, 10)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg
1, 9)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋
arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (/)((+)((+)((*)(2.9, (get
index)(ˍ₋arg1, 7)), (*)(-5.8, (getindex)(ˍ₋arg1, 9))), (*)(-14.5, (getindex
)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋
arg1, 8)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(
3, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getinde
x)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)
((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (g
etindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)(
(*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(
ˍ₋arg1, 10)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 
9)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 10)), (*)(-2.9, 
(getindex)(ˍ₋arg1, 8))), (*)(-7.25, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/
)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 7)), (getindex)(ˍ₋arg1, 6)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(1//4, (^)
((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 7)), (*)(3, (getindex)(ˍ₋arg1, 8))), (g
etindex)(ˍ₋arg1, 6)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 7)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (ge
tindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 8)),
 (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (ge
tindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 8)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ
₋arg1, 10)), 2))), 2)))), (getindex)(ˍ₋arg1, 8))
                        ˍ₋out[9] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)(
-0.9666666666666667, (getindex)(ˍ₋arg1, 7)), (*)(3.3833333333333337, (getin
dex)(ˍ₋arg1, 8))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)((+)
((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8
))), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 
8)), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1,
 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (g
etindex)(ˍ₋arg1, 7)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 
9)), (*)(-7.25, (getindex)(ˍ₋arg1, 10))), (*)(1.45, (getindex)(ˍ₋arg1, 11))
), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)
(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex
)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getinde
x)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 1
1)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋
arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (get
index)(ˍ₋arg1, 10)), (*)(5.8, (getindex)(ˍ₋arg1, 8))), (*)(14.5, (getindex)
(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)
), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getind
ex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋ar
g1, 10)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋ar
g1, 10)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 9))), (*)(0.96666666666
66667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋a
rg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋a
rg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2
))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋a
rg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10)
)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))
)), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 7)), (*)(2.9, (getindex)(ˍ₋ar
g1, 9))), (*)(7.25, (getindex)(ˍ₋arg1, 8))), (*)((+)((+)((/)(0.6, (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋
arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (g
etindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (g
etindex)(ˍ₋arg1, 10))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋a
rg1, 11)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1,
 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (g
etindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋ar
g1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex)(ˍ₋arg1, 7)), 2
))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 8)), (*)(-5.8, (getinde
x)(ˍ₋arg1, 10))), (*)(-14.5, (getindex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.1, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 8)),
 (getindex)(ˍ₋arg1, 7)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 8))), (getindex
)(ˍ₋arg1, 7)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 8)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex
)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)(
(+)((*)(3, (getindex)(ˍ₋arg1, 9)), (*)(-4, (getindex)(ˍ₋arg1, 10))), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 8)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), 
(getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 2)))), (getindex)(ˍ₋
arg1, 9))
                        ˍ₋out[10] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(5.316666666666667, (getindex)(ˍ₋arg1, 10)), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 12))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 11))), (*)(
(+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2
))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋
arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg
1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)
), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋ar
g1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (/)((+)((+)((*)(-2.9, (geti
ndex)(ˍ₋arg1, 10)), (*)(1.45, (getindex)(ˍ₋arg1, 12))), (*)(-7.25, (getinde
x)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (get
index)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex
)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)),
 (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), 
(getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (
*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2)))), (/)(
(+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 9)), (*)(14.5, (getindex)(ˍ₋arg1, 10)))
, (*)(-2.9, (getindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getinde
x)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋
arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)
), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)),
 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getin
dex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6
, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)
(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 2)))), (/)((+)((+)((*)(-1.45, 
(getindex)(ˍ₋arg1, 8)), (*)(2.9, (getindex)(ˍ₋arg1, 10))), (*)(7.25, (getin
dex)(ˍ₋arg1, 9))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (ge
tindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getinde
x)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10))
, (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(
0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^
)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))),
 (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ
₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*
)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)
((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 8)), (*)(3.383333333333333
7, (getindex)(ˍ₋arg1, 9))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 10))
), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 
11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)),
 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getin
dex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex
)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋ar
g1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getindex)(ˍ₋arg1, 10)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)
(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2)))), (/)((+)((+)((*)(2.9, (g
etindex)(ˍ₋arg1, 9)), (*)(-14.5, (getindex)(ˍ₋arg1, 10))), (*)(-5.8, (getin
dex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)(
(+)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (g
etindex)(ˍ₋arg1, 11)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 8)), (getind
ex)(ˍ₋arg1, 10)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)
), (*)(-4, (getindex)(ˍ₋arg1, 9))), (getindex)(ˍ₋arg1, 8)), 2))), 2))), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 10)), (*)(-4, (getindex)(ˍ₋arg1, 11)))
, (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 9)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (get
index)(ˍ₋arg1, 11)), 2))), 2)))), (getindex)(ˍ₋arg1, 10))
                        ˍ₋out[11] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 9)), (*)(3.3833333333333337, (geti
ndex)(ˍ₋arg1, 10))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)(
(+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋a
rg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6,
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1
, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13))
, 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getin
dex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1,
 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))),
 (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ
₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2))), (/)((+)((+)((*)(2.9, (get
index)(ˍ₋arg1, 10)), (*)(-5.8, (getindex)(ˍ₋arg1, 12))), (*)(-14.5, (getind
ex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex
)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10))
, (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0
.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)
((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), 
(getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 1
0)), (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)),
 (getindex)(ˍ₋arg1, 12)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋ar
g1, 10)), (*)(-2.9, (getindex)(ˍ₋arg1, 12))), (*)(14.5, (getindex)(ˍ₋arg1, 
11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 1
3)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (g
etindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (get
index)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*
)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(
ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getind
ex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(
ˍ₋arg1, 12)), 2))), 2)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 13)), (
*)(-2.9, (getindex)(ˍ₋arg1, 11))), (*)(-7.25, (getindex)(ˍ₋arg1, 12))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), 
(*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋
arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6
, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg
1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)
), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1
, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))
), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)
(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(0.966
6666666666667, (getindex)(ˍ₋arg1, 13)), (*)(-3.3833333333333337, (getindex)
(ˍ₋arg1, 12))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 11))), (*)((+)((+
)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1, 
12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)
), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(
ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2)))
, 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)),
 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*)(-4, (getindex)(ˍ₋arg1
, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (geti
ndex)(ˍ₋arg1, 9)), (*)(7.25, (getindex)(ˍ₋arg1, 10))), (*)(2.9, (getindex)(
ˍ₋arg1, 11))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ
₋arg1, 13)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 11)), (*
)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10
)), (getindex)(ˍ₋arg1, 9)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+
)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), (*)(3, (getindex)(ˍ₋arg1, 11))), (ge
tindex)(ˍ₋arg1, 9)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 10)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)),
 (getindex)(ˍ₋arg1, 12)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 9)), (getindex)(
ˍ₋arg1, 11)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 10)), 
(*)(3, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 9)), 2))), 2)))), (geti
ndex)(ˍ₋arg1, 11))
                        ˍ₋out[12] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 10)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 11))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 12))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getinde
x)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (get
index)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋ar
g1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getinde
x)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))), (/)((+)((+)((*)(-1.4
5, (getindex)(ˍ₋arg1, 10)), (*)(2.9, (getindex)(ˍ₋arg1, 12))), (*)(7.25, (g
etindex)(ˍ₋arg1, 11))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (ge
tindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋
arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)),
 (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))),
 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 11)), (*)(-5.8, (getindex)(
ˍ₋arg1, 13))), (*)(-14.5, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getin
dex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11
)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (g
etindex)(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13)))
, (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (g
etindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (
/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 14)), (*)(-2.9, (getindex)(ˍ₋arg1, 
12))), (*)(-7.25, (getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.6, (^)((+)((+
)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋a
rg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (
getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.1, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (get
index)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)
(ˍ₋arg1, 10)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getin
dex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4,
 (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)
(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 13)), 
(*)(5.8, (getindex)(ˍ₋arg1, 11))), (*)(14.5, (getindex)(ˍ₋arg1, 12))), (*)(
(+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10)), (getindex)(ˍ₋arg1, 12)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋
arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getinde
x)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.1, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (geti
ndex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg
1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 1
3)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 14
)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 13))), (*)(5.31666666666666
7, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 10))
, (getindex)(ˍ₋arg1, 12)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 11))), (getindex)(ˍ₋arg1, 10)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 13)), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 14
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getinde
x)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 12)), (*)(-4, (getindex)(ˍ₋a
rg1, 13))), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 
2))), 2)))), (getindex)(ˍ₋arg1, 12))
                        ˍ₋out[13] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-2.9, (getindex)(ˍ₋arg1, 13)), (*)(-7.25, (getindex)(ˍ₋arg1, 14))), (*)(1.
45, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋ar
g1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋
arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 1
5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getind
ex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋
arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)),
 2))), 2))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 11)), 
(*)(3.3833333333333337, (getindex)(ˍ₋arg1, 12))), (*)(-5.316666666666667, (
getindex)(ˍ₋arg1, 13))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 1
2)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1,
 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ
₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1,
 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2)))
, 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 11)), (*)(2.9, (getindex
)(ˍ₋arg1, 13))), (*)(7.25, (getindex)(ˍ₋arg1, 12))), (*)((+)((+)((/)(0.3, (
^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*
)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (geti
ndex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (
getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))
), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))
), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13))
, (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (
getindex)(ˍ₋arg1, 13)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1
, 12)), (*)(-5.8, (getindex)(ˍ₋arg1, 14))), (*)(-14.5, (getindex)(ˍ₋arg1, 1
3))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋a
rg1, 14)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(
ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12))
, (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (/)(0.3, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)
(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getin
dex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)
(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)
(ˍ₋arg1, 14)), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 13))), (*)(0.96666
66666666667, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0
e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getinde
x)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 11)), (getindex)(ˍ₋arg1, 
13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋ar
g1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 14))), (getindex)(
ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14))
, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (get
index)(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋ar
g1, 15)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 14)), (*)(5
.8, (getindex)(ˍ₋arg1, 12))), (*)(14.5, (getindex)(ˍ₋arg1, 13))), (*)((+)((
+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 13)), (*)(-4, (getindex)(ˍ₋arg1, 12))), (getindex)(ˍ₋arg1, 11)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1
, 11)), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋
arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 13)), (*)(-4, (getindex)
(ˍ₋arg1, 14))), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 
2))), 2)))), (getindex)(ˍ₋arg1, 13))
                        ˍ₋out[14] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-2.9, (getindex)(ˍ₋arg1, 14)), (*)(1.45, (getindex)(ˍ₋arg1, 16))), (*)(-7.
25, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1
, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))
), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ
₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 1
6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getind
ex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋
arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)),
 2))), 2))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 14)), (*
)(0.9666666666666667, (getindex)(ˍ₋arg1, 16))), (*)(-3.3833333333333337, (g
etindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))
), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2))
, (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1,
 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 
15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))),
 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 12)), (*)(7.25, (getindex
)(ˍ₋arg1, 13))), (*)(2.9, (getindex)(ˍ₋arg1, 14))), (*)((+)((+)((/)(0.3, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)
(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getin
dex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (g
etindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15)))
, (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)),
 (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (g
etindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1,
 13)), (*)(14.5, (getindex)(ˍ₋arg1, 14))), (*)(-2.9, (getindex)(ˍ₋arg1, 15)
)), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (
getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1
, 12)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (get
index)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((
+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), 
(getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-
4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getinde
x)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, 
(getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 15)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ
₋arg1, 12)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 13))), (*)(-5.31666
6666666667, (getindex)(ˍ₋arg1, 14))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex
)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg1, 1
4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg
1, 15)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ
₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)),
 (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (geti
ndex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 12)), (getindex)(ˍ₋arg
1, 14)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 13)), (*)(-14
.5, (getindex)(ˍ₋arg1, 14))), (*)(-5.8, (getindex)(ˍ₋arg1, 15))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 14)), (*)(-4, (getindex)(ˍ₋arg1, 13))), (getindex)(ˍ₋arg1, 12)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1
, 12)), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋
arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 14)), (*)(-4, (getindex)
(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 13)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 
2))), 2)))), (getindex)(ˍ₋arg1, 14))
                        ˍ₋out[15] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(5.8, (getindex)(ˍ₋arg1, 14)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))), (*)(14.5
, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)),
 (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))),
 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2
))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (ge
tindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))
), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)
(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)(1.45, (get
index)(ˍ₋arg1, 17)), (*)(-2.9, (getindex)(ˍ₋arg1, 15))), (*)(-7.25, (getind
ex)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getinde
x)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)
), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16))
, (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))
, (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ
₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 
16))), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (get
index)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)))
), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 13)), (*)(3.3833
333333333337, (getindex)(ˍ₋arg1, 14))), (*)(-5.316666666666667, (getindex)(
ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ
₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (
*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)), (/)(0.6
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (g
etindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/
)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))
), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getinde
x)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)
), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2)))), (
/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 14)), (*)(-5.8, (getindex)(ˍ₋arg1, 1
6))), (*)(-14.5, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex
)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋ar
g1, 13)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(
ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋
arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)
(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(
ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2)))), (/)((+)((+
)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 17)), (*)(-3.3833333333333337,
 (getindex)(ˍ₋arg1, 16))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 15))),
 (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (getinde
x)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg
1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (ge
tindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (geti
ndex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*
)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(
ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 15)), (*)(-4, (get
index)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)
(-1.45, (getindex)(ˍ₋arg1, 13)), (*)(7.25, (getindex)(ˍ₋arg1, 14))), (*)(2.
9, (getindex)(ˍ₋arg1, 15))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 15)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 17)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 16)), (getindex)(ˍ₋arg1, 14)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 
2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 13)), (getindex)(ˍ₋arg1, 15)), 2)
)), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 14)), (*)(3, (getindex
)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 
13)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getinde
x)(ˍ₋arg1, 14)), (*)(3, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 13)), 
2))), 2)))), (getindex)(ˍ₋arg1, 15))
                        ˍ₋out[16] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 14)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 15))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 16))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ
₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 1
5)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getind
ex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (get
index)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋ar
g1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getinde
x)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)((+)((+)((*)(0.96
66666666666667, (getindex)(ˍ₋arg1, 18)), (*)(-3.3833333333333337, (getindex
)(ˍ₋arg1, 17))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 16))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋a
rg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)
(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋
arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (ge
tindex)(ˍ₋arg1, 17)), (*)(5.8, (getindex)(ˍ₋arg1, 15))), (*)(14.5, (getinde
x)(ˍ₋arg1, 16))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (g
etindex)(ˍ₋arg1, 17)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (geti
ndex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
6)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 
16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 17)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ
₋arg1, 14)), (*)(2.9, (getindex)(ˍ₋arg1, 16))), (*)(7.25, (getindex)(ˍ₋arg1
, 15))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(
ˍ₋arg1, 17)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋a
rg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(
-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), 
(*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (ge
tindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋a
rg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(
-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)))), (/)((+)
((+)((*)(1.45, (getindex)(ˍ₋arg1, 18)), (*)(-2.9, (getindex)(ˍ₋arg1, 16))),
 (*)(-7.25, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋a
rg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 15))), (getindex)(ˍ₋arg1, 1
4)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg
1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ
₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)),
 (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (geti
ndex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg
1, 18)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 15)), (*)(-5.
8, (getindex)(ˍ₋arg1, 17))), (*)(-14.5, (getindex)(ˍ₋arg1, 16))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 14)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)(ˍ₋arg1,
 15))), (getindex)(ˍ₋arg1, 14)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋
arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 16)), (*)(-4, (getindex)
(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 17)), (getindex)(ˍ₋arg1, 15)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 
2))), 2)))), (getindex)(ˍ₋arg1, 16))
                        ˍ₋out[17] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 15)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 16))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 17))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ
₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 1
6)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getind
ex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex
)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋ar
g1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getinde
x)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 18)), (*)(5.8, (getindex)(ˍ₋arg1, 16))), (*)(14.5, (ge
tindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (get
index)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 1
8))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1,
 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(0.966666666666
6667, (getindex)(ˍ₋arg1, 19)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 
18))), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16
)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (g
etindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, 
(^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (geti
ndex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 1
7)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))),
 (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 
18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 
2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18)))
, (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ
₋arg1, 15)), (*)(2.9, (getindex)(ˍ₋arg1, 17))), (*)(7.25, (getindex)(ˍ₋arg1
, 16))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋arg1,
 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, 
(getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)), (/)(0.1, (^)(
(+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (g
etindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)
((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getinde
x)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)
((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (ge
tindex)(ˍ₋arg1, 18)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((
+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15)), (getindex)(ˍ₋a
rg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(
-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2))), 2)))), (/)((+)
((+)((*)(2.9, (getindex)(ˍ₋arg1, 16)), (*)(-5.8, (getindex)(ˍ₋arg1, 18))), 
(*)(-14.5, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋ar
g1, 15)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15
)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (geti
ndex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1
, 18)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 
19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (
getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1
, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (get
index)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 2)))), (/)((+)((+)((*)(
1.45, (getindex)(ˍ₋arg1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 17))), (*)(-7.2
5, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 15))
, (getindex)(ˍ₋arg1, 17)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 16))), (getindex)(ˍ₋arg1, 15)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 16)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 
2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 17)), (*)(-4, (getindex
)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 
17)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 17)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 19)), 
2))), 2)))), (getindex)(ˍ₋arg1, 17))
                        ˍ₋out[18] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 16)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 17))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 18))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19))
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 2
0)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex
)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋ar
g1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getinde
x)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 18)), (*)(-7.25, (getindex)(ˍ₋arg1, 19))), (*)(1.45, (
getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 1
7)), (getindex)(ˍ₋arg1, 19)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1,
 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋
arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1,
 19))), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 19)), (*)(
5.316666666666667, (getindex)(ˍ₋arg1, 18))), (*)(0.9666666666666667, (getin
dex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 16)), (getind
ex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)
), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16)), 2))), 2)), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)
), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))
), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1
, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))
), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))
)), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 19)), (*)(5.8, (getindex)(ˍ₋ar
g1, 17))), (*)(14.5, (getindex)(ˍ₋arg1, 18))), (*)((+)((+)((/)(0.3, (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (geti
ndex)(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(
ˍ₋arg1, 16)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getind
ex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (ge
tindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+
)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 16)), (*)(2.9, (getindex)(ˍ₋arg1, 18)))
, (*)(7.25, (getindex)(ˍ₋arg1, 17))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋a
rg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 1
6)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg
1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ
₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)
(ˍ₋arg1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg
1, 16)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 17)), (*)(-5.
8, (getindex)(ˍ₋arg1, 19))), (*)(-14.5, (getindex)(ˍ₋arg1, 18))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 19))), (getindex)(ˍ₋arg1, 20)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋
arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋ar
g1, 16)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 18)), (*)(-4, (getindex)(ˍ₋arg1, 17))), (getindex)(ˍ₋arg1, 16
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 19)), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 
2))), 2)))), (getindex)(ˍ₋arg1, 18))
                        ˍ₋out[19] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 17)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 18))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 19))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋ar
g1, 21)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 1
7)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 19)), (*)(1.45, (getindex)(ˍ₋arg1, 21))), (*)(-7.25, (
getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4,
 (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 1
8)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1,
 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2)))
, 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋
arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19))
, (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2)))
, 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 19)), (*)(0.
9666666666666667, (getindex)(ˍ₋arg1, 21))), (*)(-3.3833333333333337, (getin
dex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)
), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)), (/
)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)
), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1
, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (ge
tindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2))
)), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 17)), (*)(7.25, (getindex)(ˍ₋
arg1, 18))), (*)(2.9, (getindex)(ˍ₋arg1, 19))), (*)((+)((+)((/)(0.1, (^)((+
)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((
*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)
(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getin
dex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (g
etindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)
(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getin
dex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 18)
), (*)(14.5, (getindex)(ˍ₋arg1, 19))), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), 
(*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (getindex
)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21)), 2))), 2)), (/)(0.6, (^)((+)((+)(1
.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1
, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (get
index)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.3, (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 19)), (*)(-4, (
getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2))), (*)(13//12, (^)((+)
((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 17)), (getindex)(ˍ
₋arg1, 19)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg
1, 20)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 18)), (*)(-14
.5, (getindex)(ˍ₋arg1, 19))), (*)(-5.8, (getindex)(ˍ₋arg1, 20))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 18))), (getindex)(ˍ₋arg1, 17)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋
arg1, 17)), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 19)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 21
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 20)), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 
2))), 2)))), (getindex)(ˍ₋arg1, 19))
                        ˍ₋out[20] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(5.8, (getindex)(ˍ₋arg1, 19)), (*)(-2.9, (getindex)(ˍ₋arg1, 21))), (*)(14.5
, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 
20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))),
 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2
))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getin
dex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)
), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex
)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋
arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)((+)((+)((*)(1.45, (get
index)(ˍ₋arg1, 22)), (*)(-2.9, (getindex)(ˍ₋arg1, 20))), (*)(-7.25, (getind
ex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21))
, (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2)))
, (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋ar
g1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1,
 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21)))
, (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)))
), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 18)), (*)(7.25, (getindex)(ˍ₋a
rg1, 19))), (*)(2.9, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, 
(getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(
ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)
(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getind
ex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (ge
tindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)
(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getind
ex)(ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (getind
ex)(ˍ₋arg1, 18)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 19))), (*)(-5.
316666666666667, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.1, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (get
index)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋ar
g1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1,
 (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(
ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getind
ex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, 
(getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(
ˍ₋arg1, 20)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 19)), (*
)(-5.8, (getindex)(ˍ₋arg1, 21))), (*)(-14.5, (getindex)(ˍ₋arg1, 20))), (*)(
(+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getinde
x)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 18)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ
₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getinde
x)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), 2))), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (geti
ndex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg
1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 2
1)), 2))), 2)))), (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 2
1)), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 22))), (*)(5.31666666666666
7, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 19)), (*)(3, (getindex)(ˍ₋arg1,
 20))), (getindex)(ˍ₋arg1, 18)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 18)), (getindex)(ˍ₋arg1, 20)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 21)), (getindex)(ˍ₋arg1, 19)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋arg1, 21))), (getindex)(ˍ₋arg1, 22
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getinde
x)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 20)), (*)(-4, (getindex)(ˍ₋a
rg1, 21))), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 
2))), 2)))), (getindex)(ˍ₋arg1, 20))
                        ˍ₋out[21] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-2.9, (getindex)(ˍ₋arg1, 21)), (*)(-7.25, (getindex)(ˍ₋arg1, 22))), (*)(1.
45, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(
1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))
), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋ar
g1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1,
 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 2
3)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋
arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2,
 (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)),
 2))), 2))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 21)), (*
)(-3.3833333333333337, (getindex)(ˍ₋arg1, 22))), (*)(0.9666666666666667, (g
etindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, 
(^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)),
 (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋a
rg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))),
 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2
))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋
arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1/
/4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 
22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))),
 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 19)), (*)(2.9, (getindex)
(ˍ₋arg1, 21))), (*)(7.25, (getindex)(ˍ₋arg1, 20))), (*)((+)((+)((/)(0.6, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1,
 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22)))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20
)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (g
etindex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (g
etindex)(ˍ₋arg1, 19)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 20))), (*
)(-5.316666666666667, (getindex)(ˍ₋arg1, 21))), (*)((+)((+)((/)(0.6, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 22)), (getindex)
(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)
), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), 
(getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getin
dex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 22))), (g
etindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 20)), 
(getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋arg1, 20))), (getin
dex)(ˍ₋arg1, 19)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 20)
), (*)(-14.5, (getindex)(ˍ₋arg1, 21))), (*)(-5.8, (getindex)(ˍ₋arg1, 22))),
 (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getind
ex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*
)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 
22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)
), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (get
index)(ˍ₋arg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, 
(getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(
ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 22)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 22)), (*)(5
.8, (getindex)(ˍ₋arg1, 20))), (*)(14.5, (getindex)(ˍ₋arg1, 21))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 19)), (getindex)(ˍ₋arg1, 21)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)(ˍ₋a
rg1, 20))), (getindex)(ˍ₋arg1, 19)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 21)), (*)(-4, (getindex)
(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 22)), (getindex)(ˍ₋arg1, 20)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 
2))), 2)))), (getindex)(ˍ₋arg1, 21))
                        ˍ₋out[22] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 20)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 21))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 22))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23))
, 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getinde
x)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex
)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4
, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋ar
g1, 20)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2
))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getinde
x)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)((+)((+)((*)(0.96
66666666666667, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (getindex)(
ˍ₋arg1, 22))), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1,
 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 2
0)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex
)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2
))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋a
rg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (g
etindex)(ˍ₋arg1, 20)), (*)(7.25, (getindex)(ˍ₋arg1, 21))), (*)(2.9, (getind
ex)(ˍ₋arg1, 22))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getinde
x)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22))
, (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2)), (/)
(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1
, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (
^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22)))
, (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1,
 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (get
index)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1,
 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2)))
), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 21)), (*)(14.5, (getindex)(ˍ₋arg
1, 22))), (*)(-2.9, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^)((+)(
(+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getin
dex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ
₋arg1, 24)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋ar
g1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(
3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (/)(0.6, 
(^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (get
index)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2))), (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getinde
x)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
2)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+)
((+)((*)(1.45, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getindex)(ˍ₋arg1, 22))),
 (*)(-7.25, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e
-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 2
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg
1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 20)), (getindex)(ˍ₋arg1,
 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 21)), (*)(3, 
(getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20)), 2))), 2))), (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg
1, 24)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 21)), (*)(-14
.5, (getindex)(ˍ₋arg1, 22))), (*)(-5.8, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1
, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2)))
, 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 22)), (*)(-4, (getindex)(ˍ₋a
rg1, 23))), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋ar
g1, 20)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(1//4, (^)((+)((+)((*)(-4, (get
index)(ˍ₋arg1, 21)), (*)(3, (getindex)(ˍ₋arg1, 22))), (getindex)(ˍ₋arg1, 20
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 23)), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 
2))), 2)))), (getindex)(ˍ₋arg1, 22))
                        ˍ₋out[23] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-3.3833333333333337, (getindex)(ˍ₋arg1, 24)), (*)(5.316666666666667, (geti
ndex)(ˍ₋arg1, 23))), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 25))), (*)(
(+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getinde
x)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ
₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋ar
g1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25
)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg
1, 24)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex
)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)((+)((+)((*)(-1.45
, (getindex)(ˍ₋arg1, 21)), (*)(7.25, (getindex)(ˍ₋arg1, 22))), (*)(2.9, (ge
tindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (
^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23)))
, (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)),
 (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//
4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 2
4))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)
(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2)
)), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋a
rg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 2
3))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 
2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 23)), (*)(-7.25, (getindex)
(ˍ₋arg1, 24))), (*)(1.45, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*
)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getin
dex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (g
etindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12,
 (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (get
index)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24
)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((
+)((+)((*)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (g
etindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(-0.9666666666666667, (g
etindex)(ˍ₋arg1, 21)), (*)(3.3833333333333337, (getindex)(ˍ₋arg1, 22))), (*
)(-5.316666666666667, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.1, (^)((+
)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*)(3,
 (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getindex)
(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*
)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getin
dex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)
((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getinde
x)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 23))
, (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 22)), (*
)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 21)), (getin
dex)(ˍ₋arg1, 23)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 22)
), (*)(-5.8, (getindex)(ˍ₋arg1, 24))), (*)(-14.5, (getindex)(ˍ₋arg1, 23))),
 (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (ge
tindex)(ˍ₋arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 2
1)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getind
ex)(ˍ₋arg1, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg
1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (ge
tindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 2))), (/)(0.3, (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (geti
ndex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(
ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋ar
g1, 24)), 2))), 2)))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ₋arg1, 24)), (*)(5
.8, (getindex)(ˍ₋arg1, 22))), (*)(14.5, (getindex)(ˍ₋arg1, 23))), (*)((+)((
+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋
arg1, 22)), (*)(3, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 21)), 2))),
 (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1
, 21)), (getindex)(ˍ₋arg1, 23)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*
)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 2
3)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)
(ˍ₋arg1, 23)), (*)(-4, (getindex)(ˍ₋arg1, 24))), (getindex)(ˍ₋arg1, 25)), 2
))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24
)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 24)), (getindex)(ˍ₋arg1, 22)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 
2))), 2)))), (getindex)(ˍ₋arg1, 23))
                        ˍ₋out[24] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 22)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 23))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 24))), (*)
((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (geti
ndex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))),
 (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ
₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 2
6)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (ge
tindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+
)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋ar
g1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2
))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getinde
x)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2))), (/)((+)((+)((*)(-2.9
, (getindex)(ˍ₋arg1, 24)), (*)(1.45, (getindex)(ˍ₋arg1, 26))), (*)(-7.25, (
getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//1
2, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (g
etindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1
, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)
), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1
//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1,
 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 
2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ
₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2)))
, 2)))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 23)), (*)(14.5, (getindex)
(ˍ₋arg1, 24))), (*)(-2.9, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^
)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), 
(getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((
+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getin
dex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)(
(+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex
)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)),
 (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)
(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25))
, (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)
(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))
, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (g
etindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋a
rg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (
/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 22)), (*)(2.9, (getindex)(ˍ₋arg1, 
24))), (*)(7.25, (getindex)(ˍ₋arg1, 23))), (*)((+)((+)((/)(0.3, (^)((+)((+)
(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex
)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋ar
g1, 22)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((
*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1,
 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, 
(getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getind
ex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)
((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (geti
ndex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*
)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(
ˍ₋arg1, 22)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 23)), (*
)(-14.5, (getindex)(ˍ₋arg1, 24))), (*)(-5.8, (getindex)(ˍ₋arg1, 25))), (*)(
(+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getin
dex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22)), (getindex)(ˍ₋arg1, 24)), 2))), 
(*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋
arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-
6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋ar
g1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (geti
ndex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26
)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (get
index)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)
((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg
1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getinde
x)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)
(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 2
5)), 2))), 2)))), (/)((+)((+)((*)(5.316666666666667, (getindex)(ˍ₋arg1, 24)
), (*)(0.9666666666666667, (getindex)(ˍ₋arg1, 26))), (*)(-3.383333333333333
7, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 22))
, (getindex)(ˍ₋arg1, 24)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋
arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 23))), (getindex)(ˍ₋arg1, 22)), 2)))
, 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getind
ex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), (
*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋a
rg1, 25))), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-
6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 23
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getinde
x)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 
24)), (getindex)(ˍ₋arg1, 26)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 24)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 26)), 
2))), 2)))), (getindex)(ˍ₋arg1, 24))
                        ˍ₋out[25] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-1.45, (getindex)(ˍ₋arg1, 23)), (*)(7.25, (getindex)(ˍ₋arg1, 24))), (*)(2.
9, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1,
 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex
)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋a
rg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 
2))), 2))), (/)((+)((+)((*)(5.8, (getindex)(ˍ₋arg1, 24)), (*)(-2.9, (getind
ex)(ˍ₋arg1, 26))), (*)(14.5, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)),
 (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (ge
tindex)(ˍ₋arg1, 25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)
((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13
//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)),
 (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (
getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2
))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)),
 (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))))
, (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 23)), (*)(3.38333
33333333337, (getindex)(ˍ₋arg1, 24))), (*)(-5.316666666666667, (getindex)(ˍ
₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋
arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)
(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2)), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)),
 (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12
, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (ge
tindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^
)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(1
3//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24))
, (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+
)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (ge
tindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋ar
g1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (/
)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 24)), (*)(-5.8, (getindex)(ˍ₋arg1, 26
))), (*)(-14.5, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)
(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg
1, 27)), 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(
-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋
arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), 
(getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getinde
x)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
5)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)(
(+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ
₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)),
 (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)
((*)(1.45, (getindex)(ˍ₋arg1, 27)), (*)(-2.9, (getindex)(ˍ₋arg1, 25))), (*)
(-7.25, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1,
 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getinde
x)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)),
 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(-4, (get
index)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 23
)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 24)), (getinde
x)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.6, (^)((+)((+)(
1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg
1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (ge
tindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (^)((+)((+)(1.0e
-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋a
rg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 2
7)), 2))), 2)))), (/)((+)((+)((*)(0.9666666666666667, (getindex)(ˍ₋arg1, 27
)), (*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 26))), (*)(5.31666666666666
7, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1
//4, (^)((+)((+)((*)(-4, (getindex)(ˍ₋arg1, 24)), (*)(3, (getindex)(ˍ₋arg1,
 25))), (getindex)(ˍ₋arg1, 23)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (get
index)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 23)), (getindex)(ˍ₋arg1, 25)), 2)))
, 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋
arg1, 26)), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 
2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (g
etindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 25)), (*)(-4, (getindex
)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (^)((+)((+)(1.0e-6, (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 
25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 25)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 27)), 
2))), 2)))), (getindex)(ˍ₋arg1, 25))
                        ˍ₋out[26] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(-0.9666666666666667, (getindex)(ˍ₋arg1, 24)), (*)(3.3833333333333337, (get
index)(ˍ₋arg1, 25))), (*)(-5.316666666666667, (getindex)(ˍ₋arg1, 26))), (*)
((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(
ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2
, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27))
, 2))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (get
index)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 2
4)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getind
ex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)
(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (get
index)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-
2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2)))
, 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1,
 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)
(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24
)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)((+)((+)((*)(-2.9, (getindex)(ˍ
₋arg1, 27)), (*)(5.8, (getindex)(ˍ₋arg1, 25))), (*)(14.5, (getindex)(ˍ₋arg1
, 26))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)
(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ
₋arg1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)),
 (getindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)), (getinde
x)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 2
6)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (/)(0.1,
 (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), 
(*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))
[30]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex
)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(
-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27
)), 2))), 2)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 24)), (*)(2.9, (
getindex)(ˍ₋arg1, 26))), (*)(7.25, (getindex)(ˍ₋arg1, 25))), (*)((+)((+)((/
)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 
26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(
13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)
), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//
4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), 
(*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1,
 25)), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋ar
g1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getinde
x)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))), (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(
-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24)), 2))), (*)(13//12, (^
)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 24)), (getind
ex)(ˍ₋arg1, 26)), 2))), 2)))), (/)((+)((+)((*)(1.45, var"(u(t))[30]"), (*)(
-2.9, (getindex)(ˍ₋arg1, 26))), (*)(-7.25, (getindex)(ˍ₋arg1, 27))), (*)((+
)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2
))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)
(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getind
ex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2
))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26
)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (
^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u
(t))[30]"), 2))), 2)))), (/)((+)((+)((*)(2.9, (getindex)(ˍ₋arg1, 25)), (*)(
-5.8, (getindex)(ˍ₋arg1, 27))), (*)(-14.5, (getindex)(ˍ₋arg1, 26))), (*)((+
)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋a
rg1, 27)), (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (
getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2
))), 2)), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋arg1, 24))
, 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (getindex)
(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2))), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)(-4, (getind
ex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2
))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)),
 (getindex)(ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(
ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), 2))))
, (/)((+)((+)((*)(-3.3833333333333337, (getindex)(ˍ₋arg1, 27)), (*)(0.96666
66666666667, var"(u(t))[30]")), (*)(5.316666666666667, (getindex)(ˍ₋arg1, 2
6))), (*)((+)((+)((/)(0.3, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3,
 (getindex)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 25))), (getindex)(ˍ₋ar
g1, 24)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 25)), (g
etindex)(ˍ₋arg1, 24)), (getindex)(ˍ₋arg1, 26)), 2))), 2)), (/)(0.6, (^)((+)
((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, (getindex)(ˍ₋arg1, 27)), (getindex)(
ˍ₋arg1, 25)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26))
, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), 2))), (/)(0.1, (^
)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 26)), (*)
(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (*)(13//12, (^)((+)(
(+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30
]"), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 26)), (*)(-4, (getindex)(ˍ₋arg1, 27))), var"(u(t))[30]"), 2))), (
*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 
26)), var"(u(t))[30]"), 2))), 2)))), (getindex)(ˍ₋arg1, 26))
                        ˍ₋out[27] = (*)((+)((+)((+)((+)((+)((/)((+)((+)((*)
(0.9666666666666667, (getindex)(ˍ₋arg1, 29)), (*)(5.316666666666667, (getin
dex)(ˍ₋arg1, 27))), (*)(-3.3833333333333337, var"(u(t))[30]")), (*)((+)((+)
((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[30]"), (
getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋
arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)), (/)(0.3, 
(^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26))
, (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)
((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (get
index)(ˍ₋arg1, 25)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (
^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋
arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)
(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2))), 2))), (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 
27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex
)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2))), 2
))), (/)((+)((+)((*)(-0.9666666666666667, (getindex)(ˍ₋arg1, 25)), (*)(3.38
33333333333337, (getindex)(ˍ₋arg1, 26))), (*)(-5.316666666666667, (getindex
)(ˍ₋arg1, 27))), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((
+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)
(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), 
(*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2)), (/)(0
.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[30]"), (getind
ex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 
27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))), (/)(0.3, (^)((
+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)
(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, 
(getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29))
, 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex
)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)
(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg
1, 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2)))), (/)((+)((+)((*)(2.9, (getin
dex)(ˍ₋arg1, 26)), (*)(-14.5, (getindex)(ˍ₋arg1, 27))), (*)(-5.8, var"(u(t)
)[30]")), (*)((+)((+)((/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1
, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4,
 (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2)), (/)(0.6, (^)
((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[30]"), (getindex)(ˍ₋a
rg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (
getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2))), (/)(0.3, (^)((+)((+)(
1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1
, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getind
ex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2))),
 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[30]"), (get
index)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg
1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)))), (/)((+)((+
)((*)(-2.9, var"(u(t))[30]"), (*)(5.8, (getindex)(ˍ₋arg1, 26))), (*)(14.5, 
(getindex)(ˍ₋arg1, 27))), (*)((+)((+)((/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4
, (^)((+)((*)(-1, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), v
ar"(u(t))[30]"), 2))), 2)), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+
)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (getindex)(
ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (
*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2))), (/)(0
.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, var"(u(t))[30]"), (
getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*)(1//4, (^)((+)((+
)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]")), (getindex)(ˍ₋a
rg1, 29)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u
(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, 
(getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2
)))), (/)((+)((+)((*)(-1.45, (getindex)(ˍ₋arg1, 25)), (*)(2.9, (getindex)(ˍ
₋arg1, 27))), (*)(7.25, (getindex)(ˍ₋arg1, 26))), (*)((+)((+)((/)(0.6, (^)(
(+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1, var"(u(t))[30]"), (getindex)(ˍ₋ar
g1, 26)), 2))), (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 27)), (g
etindex)(ˍ₋arg1, 26)), var"(u(t))[30]"), 2))), 2)), (/)(0.3, (^)((+)((+)(1.
0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ
₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (g
etindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1,
 25)), 2))), 2))), (/)(0.1, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)
(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2)
)), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t)
)[30]")), (getindex)(ˍ₋arg1, 29)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//
12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getindex)(ˍ₋arg1, 25)), (
getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg
1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋arg1, 25)), 2))), 2
)))), (/)((+)((+)((*)(1.45, (getindex)(ˍ₋arg1, 29)), (*)(-2.9, (getindex)(ˍ
₋arg1, 27))), (*)(-7.25, var"(u(t))[30]")), (*)((+)((+)((/)(0.1, (^)((+)((+
)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, (getindex)(ˍ₋arg1, 26)), (getinde
x)(ˍ₋arg1, 25)), (getindex)(ˍ₋arg1, 27)), 2))), (*)(1//4, (^)((+)((+)((*)(3
, (getindex)(ˍ₋arg1, 27)), (*)(-4, (getindex)(ˍ₋arg1, 26))), (getindex)(ˍ₋a
rg1, 25)), 2))), 2)), (/)(0.6, (^)((+)((+)(1.0e-6, (*)(1//4, (^)((+)((*)(-1
, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 26)), 2))), (*)(13//12, (^)((+)((+)(
(*)(-2, (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 26)), var"(u(t))[30]"),
 2))), 2))), (/)(0.3, (^)((+)((+)(1.0e-6, (*)(13//12, (^)((+)((+)((*)(-2, v
ar"(u(t))[30]"), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋arg1, 29)), 2))), (*
)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(-4, var"(u(t))[30]"
)), (getindex)(ˍ₋arg1, 29)), 2))), 2))), (^)((+)((+)(1.0e-6, (*)(13//12, (^
)((+)((+)((*)(-2, var"(u(t))[30]"), (getindex)(ˍ₋arg1, 27)), (getindex)(ˍ₋a
rg1, 29)), 2))), (*)(1//4, (^)((+)((+)((*)(3, (getindex)(ˍ₋arg1, 27)), (*)(
-4, var"(u(t))[30]")), (getindex)(ˍ₋arg1, 29)), 2))), 2)))), (getindex)(ˍ₋a
rg1, 27))
                        ˍ₋out[28] = (+)((+)((+)((+)((+)((*)(0.2, var"(u(t))
[1]"), (*)(-0.2, (getindex)(ˍ₋arg1, 4))), (*)(-1, (getindex)(ˍ₋arg1, 28))),
 (*)(2.0, (getindex)(ˍ₋arg1, 1))), (*)(-2.0, (getindex)(ˍ₋arg1, 2))), (geti
ndex)(ˍ₋arg1, 3))
                        ˍ₋out[29] = (+)((+)((+)((+)((+)((*)(-0.2, (getindex
)(ˍ₋arg1, 24)), (*)(-1, var"(u(t))[30]")), (*)(-2.0, (getindex)(ˍ₋arg1, 26)
)), (*)(2.0, (getindex)(ˍ₋arg1, 27))), (*)(0.2, (getindex)(ˍ₋arg1, 29))), (
getindex)(ˍ₋arg1, 25))
                        #= /cache/julia-buildkite-plugin/depots/5b300254-17
38-4989-ae0a-f4d2d937f953/packages/SymbolicUtils/qulQp/src/code.jl:396 =#
                        nothing
                    end
            end
        end
    end
end)), [1.0 0.0 … 0.0 0.0; 0.0 1.0 … 0.0 0.0; … ; 0.0 0.0 … 0.0 0.0; 0.0 0.
0 … 0.0 0.0], nothing, nothing, nothing, nothing, nothing, nothing, nothing
, nothing, nothing, nothing, [Symbol("getindex(u(t), 3)"), Symbol("getindex
(u(t), 4)"), Symbol("getindex(u(t), 5)"), Symbol("getindex(u(t), 6)"), Symb
ol("getindex(u(t), 7)"), Symbol("getindex(u(t), 8)"), Symbol("getindex(u(t)
, 9)"), Symbol("getindex(u(t), 10)"), Symbol("getindex(u(t), 11)"), Symbol(
"getindex(u(t), 12)")  …  Symbol("getindex(u(t), 22)"), Symbol("getindex(u(
t), 23)"), Symbol("getindex(u(t), 24)"), Symbol("getindex(u(t), 25)"), Symb
ol("getindex(u(t), 26)"), Symbol("getindex(u(t), 27)"), Symbol("getindex(u(
t), 28)"), Symbol("getindex(u(t), 29)"), Symbol("getindex(u(t), 2)"), Symbo
l("getindex(u(t), 31)")], :t, nothing, ModelingToolkit.var"#472#generated_o
bserved#471"{Bool, ModelingToolkit.ODESystem, Dict{Any, Any}}(false, Core.B
ox(Symbolics.Equation[(u(t))[30] ~ -0.034482758620689655 / (1 + t) + (u(t))
[31], (u(t))[1] ~ -0.034482758620689655 / (1 + t) + (u(t))[2]]), ModelingTo
olkit.ODESystem(Symbolics.Equation[Differential(t)((u(t))[3]) ~ ((3.3833333
333333337(u(t))[2] - 0.9666666666666667(u(t))[1] - 5.316666666666667(u(t))[
3]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) 
+ (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(
t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))
[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + 
(u(t))[1] - 4(u(t))[2])^2))^2)) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))
[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2)
 + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u
(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t)
)[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2
(u(t))[3])^2))^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1
 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((
3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))
^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] -
 2(u(t))[4])^2))^2)) + (2.9(u(t))[3] + 7.25(u(t))[2] - 1.45(u(t))[1]) / ((0
.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*
((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2
))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1]
 - 4(u(t))[2])^2))^2)) + (5.316666666666667(u(t))[3] + 0.9666666666666667(u
(t))[5] - 3.3833333333333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t
))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(
t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13/
/12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[
5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t
))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u
(t))[2] - 14.5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(
t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u
(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13
//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))
[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (
13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)))*(u(t))[3], Different
ial(t)((u(t))[4]) ~ ((7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((
3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))
^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] -
 4(u(t))[3])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.
3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*(
(3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2)
)^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + 
(13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^
2))^2)) + (3.3833333333333337(u(t))[3] - 0.9666666666666667(u(t))[2] - 5.31
6666666666667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[
4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3
] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] +
 (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1
//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (0.9666666666666667(u
(t))[6] + 5.316666666666667(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((
3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))
^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] -
 2(u(t))[5])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*(
(3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2)
)^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + 
(13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^
2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] 
+ (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u
(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((
u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] +
 (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5]
)^2))^2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((0.9666666666666667(u(t
))[7] + 5.316666666666667(u(t))[5] - 3.3833333333333337(u(t))[6]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(
t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))
[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1
//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4
(u(t))[6])^2))^2)) + (3.3833333333333337(u(t))[4] - 0.9666666666666667(u(t)
)[3] - 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5]
 + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[
4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)
*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] -
 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4
])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t))
[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4]
 - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12
)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] 
- 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//
12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] + 7.25(u(
t))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6]
)^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3
] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6]
)^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13
//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[7] - 2.9(
u(t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))
[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))
[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[
6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + 
(1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[4] - 5.8
(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t)
)[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t)
)[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))
[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[5], Differential(t)((u(t))
[6]) ~ ((3.3833333333333337(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.3166
66666666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] 
- 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (
u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^
2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//
12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5] - 14.5(u(
t))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4]
 - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5]
 + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + 
(u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])
^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[
5] + (u(t))[7] - 2(u(t))[6])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25
(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5
])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7]
 - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 
4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.316666666666667(u(t))[6] + 0.96
66666666666667(u(t))[8] - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(
u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t
))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(
t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (
u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^
2))^2)) + (2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6
 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 
2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u
(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((
u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] +
 (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5]
)^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-
6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(
u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*((
(u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] -
 (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u
(t))[6], Differential(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.966
6666666666667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(
t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))
[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t)
)[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u
(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2)
)^2)) + (0.9666666666666667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.38333
33333333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^
2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] 
+ (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (
u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^
2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (7.25(u(t))[6] + 2.9(u(
t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7
] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] +
 (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1
//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[6] - 14.5(
u(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8
])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[
7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5]
 + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.
9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//
12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12
)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5
] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] -
 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))
[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) 
/ ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7]
 + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[
8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6]
)^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1/
/4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t
))[9] - 2(u(t))[8])^2))^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ ((3.38
33333333333337(u(t))[7] - 0.9666666666666667(u(t))[6] - 5.316666666666667(u
(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9
])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[
6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] -
 (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t)
)[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (7.25(u(t))[7] + 2.9(u(t))[8] - 1.
45(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t
))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t)
)[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6
] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((
u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (0.9666666666666667(u(t))[10] 
+ 5.316666666666667(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0
e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))
[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7]
 - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12
)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u
(t))[9])^2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((
3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + 
(13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10
] - 4(u(t))[9])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / (
(0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//
4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[
8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^
2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))
[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.
0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t)
)[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7
] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//1
2)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)
))*(u(t))[8], Differential(t)((u(t))[9]) ~ ((5.316666666666667(u(t))[9] + 0
.9666666666666667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[
7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9]
 + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t)
)[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13/
/12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] 
- 4(u(t))[10])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) /
 ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (
1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(
t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[
10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 
+ (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9]
 + (u(t))[11] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[8] - 0.966
6666666666667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (
13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + 
(u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (
u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9]
 + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[
8])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.
0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t
))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(
t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13
//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u
(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2))^2)) + (2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.0e-6
 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] 
+ (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + 
(u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[1
0])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12
)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(
t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u
(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4
(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) +
 (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2))^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((7.25(u(t))[9] + 2.9
(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(
t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^
2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u
(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (5.8
(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(
((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8]
 - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12]
 - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t)
)[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u
(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (
3.3833333333333337(u(t))[9] - 0.9666666666666667(u(t))[8] - 5.3166666666666
67(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(
t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(
t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u
(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + 
(1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (0.966666666666666
7(u(t))[12] + 5.316666666666667(u(t))[10] - 3.3833333333333337(u(t))[11]) /
 ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1
//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (
u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(
t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.
0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(
t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[11]
 - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] -
 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] 
+ (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10]
 + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t
))[11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(
((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t)
)[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[
10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t)
)[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 
4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t)
)[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t)
)[10], Differential(t)((u(t))[11]) ~ ((3.3833333333333337(u(t))[10] - 0.966
6666666666667(u(t))[9] - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] 
+ (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - 
(u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13
//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[
9] - 4(u(t))[10])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.25(u(t))[12
]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2)
 + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12]
 - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13]
 - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//1
2)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (5.8(u(t))[10] + 14.5
(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t
))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12
)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t
))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2
) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.31666666
6666667(u(t))[11] + 0.9666666666666667(u(t))[13] - 3.3833333333333337(u(t))
[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*
(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t)
)[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t)
)[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13
//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[11] + 7
.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (
u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13/
/12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (
u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11
] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2
)) + (2.9(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] 
+ (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - 
(u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13
//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[
11])^2))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ ((5.316666666666667
(u(t))[12] + 0.9666666666666667(u(t))[14] - 3.3833333333333337(u(t))[13]) /
 ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t)
)[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] -
 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] 
- 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*
((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (1.45(u(t))[14] - 2.9(u
(t))[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t)
)[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*
((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12
)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t
))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14]
 - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2
)) + (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] -
 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + 
(1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t)
)[12])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[10]) / ((0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] +
 (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] 
+ (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t)
)[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t
))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0
e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t
))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (3.3833333333333337(u(t))[11] 
- 0.9666666666666667(u(t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1
.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t
))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13
])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12
] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5
.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (
13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12]
 + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12
] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(
t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)
*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Different
ial(t)((u(t))[22]) ~ ((5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13/
/12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(
u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(
u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*(
(1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u
(t))[23] - 2(u(t))[22])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] - 7.25(u(
t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[2
1])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u
(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u
(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[2
3])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) 
+ (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (7.25(u(t))[2
1] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2
(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) 
+ (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[
22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (
u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[
21])^2))^2)) + (3.3833333333333337(u(t))[21] - 0.9666666666666667(u(t))[20]
 - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] +
 (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t)
)[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13
//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1
//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] +
 (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))
[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^
2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t)
)[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2
) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2
(u(t))[22])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.316666666666667(u(t
))[22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] -
 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2
) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t)
)[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] +
 (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2))^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~ ((1.45(u(t))[25] 
- 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] 
- (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + 
(1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23]
 + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t
))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24]
)^2))^2)) + (5.316666666666667(u(t))[23] + 0.9666666666666667(u(t))[25] - 3
.3833333333333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(
t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4
)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u
(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25
] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))
^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6
 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24
] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[2
3] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))
^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) 
+ (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (
u(t))[21] - 4(u(t))[22])^2))^2)) + (3.3833333333333337(u(t))[22] - 0.966666
6666666667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2
(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 
2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13
//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))
[21] - 4(u(t))[22])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.8(u(t))[2
4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*((
(u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[
21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[
25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2
))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[
22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.8(u(t))[22] + 14.5(u(t))[23] -
 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) +
 (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 
+ (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[2
3] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[2
3] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(
u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//1
2)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[23], Differenti
al(t)((u(t))[24]) ~ ((3.3833333333333337(u(t))[23] - 0.9666666666666667(u(t
))[22] - 5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2)
)^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2
) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))
[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] +
 (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))
[23])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.316666666666667(u(t))[24]
 - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24]
 + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t
))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(
t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] 
+ (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t
))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])
^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / ((0.1 / ((1.
0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(
t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u
(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22]
 - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])
^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24]
 + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t))[24] - 2.
9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(
t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)
*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*
(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[26] - 2.9(u(
t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))
[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*(
(3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)
*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t)
)[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] 
- 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)
) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 
2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] -
 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (
1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(
((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))
[24])^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ ((5.31666666666666
7(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.3833333333333337(u(t))[26]) 
/ ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + 
(13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25
] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24]
 - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)
*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (7.25(u(t))[24] + 2.9(
u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(
t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24
])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[2
6])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(
t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23]
 - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^
2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[2
3] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24
] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) 
+ (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u
(t))[27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t))[24] - 0.9666666
666666667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + 
(u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (
u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1/
/4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[
25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5(u(t))[25
]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2)
 + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[
27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2)
)^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[2
4] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t))[25] - 
2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u
(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0
.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//
4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u
(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12
)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[25], Differentia
l(t)((u(t))[26]) ~ ((3.3833333333333337(u(t))[25] - 0.9666666666666667(u(t)
)[24] - 5.316666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))
[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4
(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[
25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + 
(u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[
25])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / 
((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((
3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))
[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[
27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-
6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))
[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26] 
- 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 
2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1
//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2
(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//
12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] + 7.2
5(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + 
(u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[
25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))
[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[
26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2)
)^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[
26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4
(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) 
+ (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u
(t))[26])^2))^2)) + (5.316666666666667(u(t))[26] + 0.9666666666666667(u(t))
[28] - 3.3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))
[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4
(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[
25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + 
(u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[
27])^2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ ((7.25(u(t))[26] + 
2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] +
 (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t)
)[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13
//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] +
 (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))
[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^
2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t)
)[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^
2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2
(u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[26] - 0.9666666666666667(u(
t))[25] - 5.316666666666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t
))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] -
 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] -
 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t)
)[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] +
 (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t)
)[26])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*(
(3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))
[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e
-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[
28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[29] - 2.9(u(t))[27] - 7.25(u(t))[2
8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^
2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t)
)[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1
//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (0.966666666666666
7(u(t))[29] + 5.316666666666667(u(t))[27] - 3.3833333333333337(u(t))[28]) /
 ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (
13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] -
 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*
((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)))*(u(t))[27], Differential
(t)((u(t))[28]) ~ ((3.3833333333333337(u(t))[27] - 0.9666666666666667(u(t))
[26] - 5.316666666666667(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27
] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) +
 (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[2
8] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u
(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[2
7])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9(u(t))[29]) / ((0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((
u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28
])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29
])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29]
 - 2(u(t))[28])^2))^2)) + (2.9(u(t))[28] + 7.25(u(t))[27] - 1.45(u(t))[26])
 / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) +
 (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29]
 - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30]
 - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[30] - 2.9
(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(
t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u
(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30
] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))
^2)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))[28]) / ((0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29]
 - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26]
 - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^
2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) +
 (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4
)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(
t))[28])^2))^2)) + (0.9666666666666667(u(t))[30] + 5.316666666666667(u(t))[
28] - 3.3833333333333337(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[2
8] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(
u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) +
 (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[2
8] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u
(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[2
9])^2))^2)))*(u(t))[28], Differential(t)((u(t))[29]) ~ ((0.9666666666666667
(u(t))[31] + 5.316666666666667(u(t))[29] - 3.3833333333333337(u(t))[30]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))
[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 
4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] -
 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*(
(3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2)) + (3.3833333333333337(u(t)
)[28] - 0.9666666666666667(u(t))[27] - 5.316666666666667(u(t))[29]) / ((0.1
 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)
*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t
))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(
t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.
0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(
t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (2.9(u(t))[28] - 14.5(u(t))[2
9] - 5.8(u(t))[30]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29]
 - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t
))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(
t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] 
- 4(u(t))[30])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (1
3//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)) + (5.8(u(t))[28] + 
14.5(u(t))[29] - 2.9(u(t))[30]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - 
(u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1
//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] +
 (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[
30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)) + (2.9(
u(t))[29] + 7.25(u(t))[28] - 1.45(u(t))[27]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[
29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))
[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.1 / 
((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((
3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 
4(u(t))[28])^2))^2)) + (1.45(u(t))[31] - 2.9(u(t))[29] - 7.25(u(t))[30]) / 
((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (
1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 
2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] -
 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*(
(3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2)))*(u(t))[29], 0 ~ 0.2(u(t))
[1] + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - (u(t))[2] - 2.0(u(t))[4], 0
 ~ 2.0(u(t))[29] + 0.2(u(t))[31] + (u(t))[27] - 0.2(u(t))[26] - (u(t))[30] 
- 2.0(u(t))[28]], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[3], (u(t))[4]
, (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(t))
[11], (u(t))[12]  …  (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(t))
[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[2], (u(t))[31]], Any[], Di
ct{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[30] ~ -0.0344827
58620689655 / (1 + t) + (u(t))[31], (u(t))[1] ~ -0.034482758620689655 / (1 
+ t) + (u(t))[2]], Base.RefValue{Vector{Symbolics.Num}}(Symbolics.Num[]), B
ase.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Any}(M
atrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Ma
trix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolics.Num}}(Mat
rix{Symbolics.Num}(undef, 0, 0)), :pdesys2, ModelingToolkit.ODESystem[], Di
ct{Any, Any}((u(t))[17] => 0.5344827586206896, (u(t))[18] => 0.568965517241
3793, (u(t))[8] => 0.22413793103448276, (u(t))[10] => 0.29310344827586204, 
(u(t))[27] => 0.8793103448275862, (u(t))[28] => 0.9137931034482759, (u(t))[
2] => 0.017241379310344827, (u(t))[24] => 0.7758620689655172, (u(t))[30] =>
 0.9827586206896551, (u(t))[21] => 0.6724137931034483…), nothing, nothing, 
nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingToolkit.Symboli
cContinuousCallback(Symbolics.Equation[], Symbolics.Equation[])], ModelingT
oolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val{true}(), M
ethodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}, MethodOfLi
nes.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.Scalar
izedDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{Any}, MethodO
fLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 1, MethodOf
Lines.EdgeAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], SymbolicUtil
s.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{SymbolicUtils.Sy
m{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Float64}}(x => (
0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUtils.FnType{T
uple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.ImmutableDict{Da
taType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.FnType{Tuple,
 Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataTy
pe, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, Base.Immutab
leDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, Base.Immuta
bleDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t))[1], (u(t
))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u
(t))[9], (u(t))[10]  …  (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[25], (u(
t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30], (u(t))[31]]), Dict
{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{F
loat64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}}
(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real, Base.Immu
tableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float6
4}, Base.TwicePrecision{Float64}, Int64}}(x => -0.017241379310344827:0.0344
82758620689655:1.0172413793103448), Dict{SymbolicUtils.Sym{Real, Base.Immut
ableDict{DataType, Any}}, Float64}(x => 0.034482758620689655), Dict{Symboli
cUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, T
uple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), Dict{Symboli
cUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianIndices{1, T
uple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((31,)))), MethodOfLin
es.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLines.Scalari
zedDiscretization}(Dict{Symbolics.Num, Int64}(x => 29), t, 2, MethodOfLines
.WENOScheme(1.0e-6), MethodOfLines.EdgeAlignedGrid(), true, false, MethodOf
Lines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tuple{}, Name
dTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equation[Diffe
rential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Symbolics.Equa
tion[u(0, x) ~ x, Differential(x)(u(t, 0.0)) ~ 1 / (1 + t), Differential(x)
(u(t, 1.0)) ~ 1 / (1 + t)], Symbolics.VarDomainPairing[Symbolics.VarDomainP
airing(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], Symbolics.N
um[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Dict{Any, Any
}(), nothing, Any[], :pdesys2, nothing), false, Base.RefValue{Any}(nothing)
), ModelingToolkit.SystemStructures.TearingState{ModelingToolkit.ODESystem}
(ModelingToolkit.ODESystem(Symbolics.Equation[Differential(t)((u(t))[3]) ~ 
((3.3833333333333337(u(t))[2] - 0.9666666666666667(u(t))[1] - 5.31666666666
6667(u(t))[3]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(
t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t)
)[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5
] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(
u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2)) + (5.8(u(t))[2] + 14.5(u(t))[3] 
- 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u
(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t
))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[
5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u
(t))[4] - 2(u(t))[3])^2))^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[
4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) 
+ (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(
t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))
[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + 
(u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[3] + 7.25(u(t))[2] - 1.45(u(t)
)[1]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2
) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(
u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t
))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] 
+ (u(t))[1] - 4(u(t))[2])^2))^2)) + (5.316666666666667(u(t))[3] + 0.9666666
666666667(u(t))[5] - 3.3833333333333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t)
)[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4]
)^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3
] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))
[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2
)) + (2.9(u(t))[2] - 14.5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (13
//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t
))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4
])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[
3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))
[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)))*(u(t))[3]
, Differential(t)((u(t))[4]) ~ ((7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[
2]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) 
+ (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(
t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))
[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + 
(u(t))[2] - 4(u(t))[3])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))
[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2)
 + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t)
)[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2
(u(t))[4])^2))^2)) + (3.3833333333333337(u(t))[3] - 0.9666666666666667(u(t)
)[2] - 5.316666666666667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[
3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] -
 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[
3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (0.9666666
666666667(u(t))[6] + 5.316666666666667(u(t))[4] - 3.3833333333333337(u(t))[
5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) 
+ (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(
t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))
[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t))
[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2)
 + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t)
)[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2
(u(t))[4])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1
 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((
3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))
^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] -
 2(u(t))[5])^2))^2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((0.966666666
6666667(u(t))[7] + 5.316666666666667(u(t))[5] - 3.3833333333333337(u(t))[6]
) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t
))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t)
)[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u
(t))[7] - 4(u(t))[6])^2))^2)) + (3.3833333333333337(u(t))[4] - 0.9666666666
666667(u(t))[3] - 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5]
 - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2)
 + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + 
(u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] 
- 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) +
 (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5]
)^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] +
 (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])
^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5
] + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] 
- (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] -
 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4
])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t)
)[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t)
)[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//1
2)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7]
 - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t)
)[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t
))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t
))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//
12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12
)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7
] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13
//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[5], Differentia
l(t)((u(t))[6]) ~ ((3.3833333333333337(u(t))[5] - 0.9666666666666667(u(t))[
4] - 5.316666666666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] +
 (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u
(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2
(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])
^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[5
] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] 
+ (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*
(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12
)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t)
)[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] 
- 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (
u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^
2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//
12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.316666666666667(u(t)
)[6] + 0.9666666666666667(u(t))[8] - 3.3833333333333337(u(t))[7]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(
t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))
[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13
//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u
(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2
(u(t))[7])^2))^2)) + (2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (
u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t
))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))
^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (
13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] -
 2(u(t))[5])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.
6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + 
(u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(
t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2)
)^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + 
(13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^
2))^2)))*(u(t))[6], Differential(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))
[6] - 0.9666666666666667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t)
)[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9
] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//
4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u
(t))[6])^2))^2)) + (0.9666666666666667(u(t))[9] + 5.316666666666667(u(t))[7
] - 3.3833333333333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - 
(u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((
3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2
(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (7.25(u(t))[
6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] 
- (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*
((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] -
 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (2.9(u(t))
[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6]
 - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12
)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] 
- 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//
12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))[6] + 14.5(u(
t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-
6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7]
 + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + 
(u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])
^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[
6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7.25
(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//1
2)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*(
(3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9]
 - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t)
)[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))[7], Differential(t)((u(t))[8
]) ~ ((3.3833333333333337(u(t))[7] - 0.9666666666666667(u(t))[6] - 5.316666
666666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] 
- 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12
)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^
2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//
12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (7.25(u(t))[7] + 2.9(u(
t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[
10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8]
 + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[
7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (
13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (0.9666666666666667
(u(t))[10] + 5.316666666666667(u(t))[8] - 3.3833333333333337(u(t))[9]) / ((
0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4
)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8]
)^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2
) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t)
)[10] - 4(u(t))[9])^2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9
]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) 
+ (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + 
(1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (
u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t)
)[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 
+ (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] 
+ (u(t))[10] - 4(u(t))[9])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(
t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9]
)^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6
] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - 
(u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.
0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9
] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//
4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^
2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))
[8])^2))^2)))*(u(t))[8], Differential(t)((u(t))[9]) ~ ((5.316666666666667(u
(t))[9] + 0.9666666666666667(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12
)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[1
1] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10]
)^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + 
(u(t))[11] - 4(u(t))[10])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u
(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[
10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t
))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8
] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*(
(3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))
[8] - 0.9666666666666667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((0.3 / (
(1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(
u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2
(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + 
(13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9]
 - 2(u(t))[8])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / (
(0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1/
/4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t)
)[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10
])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2
(u(t))[9])^2))^2)) + (2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(
((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] 
- 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2
) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t)
)[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10])
 / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (1
3//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(
t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t)
)[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-
6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10]
 - 2(u(t))[9])^2))^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((7.25(u(t
))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t
))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(
u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(
u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] 
+ (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t)
)[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))
^2)) + (5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 +
 (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] 
+ (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))
[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//
12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^
2))^2)) + (3.3833333333333337(u(t))[9] - 0.9666666666666667(u(t))[8] - 5.31
6666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))
[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t
))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t
))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] -
 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t)
)[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (0.9666
666666666667(u(t))[12] + 5.316666666666667(u(t))[10] - 3.3833333333333337(u
(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(
t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1
//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[9] - 5.
8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (
u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(
((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[
12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) +
 (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (1.45(u(t))[12]
 - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8
] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t)
)[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//
12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u
(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[1
2] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))
^2)))*(u(t))[10], Differential(t)((u(t))[11]) ~ ((3.3833333333333337(u(t))[
10] - 0.9666666666666667(u(t))[9] - 5.316666666666667(u(t))[11]) / ((0.1 / 
((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3
(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12
])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 
+ (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11
] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 7.
25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(
t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] +
 (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t)
)[12])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^
2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (5.8(u(t))
[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))
[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2
))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2
) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))
[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u
(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + 
(5.316666666666667(u(t))[11] + 0.9666666666666667(u(t))[13] - 3.38333333333
33337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) 
+ (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[
11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u
(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12
])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(
t))[11] + 7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(
t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12]
)^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1
.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(
t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] 
+ (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))
[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0.1 / 
((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3
(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12
])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 
+ (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12]
 - 2(u(t))[11])^2))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ ((5.3166
66666666667(u(t))[12] + 0.9666666666666667(u(t))[14] - 3.3833333333333337(u
(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//
12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (
u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + 
(u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[
13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2
) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (1.45(u(t))[
14] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2
) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-
6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))
[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] +
 (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))
[13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (
u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[
11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))
[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-
6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[1
3] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[10
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((
u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((
(u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[1
0] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[
14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2)
)^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1/
/4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (3.3833333333333337
(u(t))[11] - 0.9666666666666667(u(t))[10] - 5.316666666666667(u(t))[12]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))
[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 
4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] -
 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*(
(3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(
t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[
13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / 
((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((
3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))
[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2)
 + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …
  Differential(t)((u(t))[22]) ~ ((5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u(t)
)[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21]
)^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t
))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t
))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23]
)^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t
))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22
] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] 
- 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t
))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t
))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] 
- 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t
))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (7
.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(
t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t
))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12
)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22]
 - 2(u(t))[21])^2))^2)) + (3.3833333333333337(u(t))[21] - 0.966666666666666
7(u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[2
2] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23
])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((
u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[2
2] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(
u(t))[21])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / ((0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//
12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u
(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u
(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(
t))[23] - 2(u(t))[22])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.31666666
6666667(u(t))[22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (
u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u
(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//
12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(
u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2))^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~ ((1.45
(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[
23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))
[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(
((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 
2(u(t))[24])^2))^2)) + (5.316666666666667(u(t))[23] + 0.9666666666666667(u(
t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])
^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t
))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] 
+ (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] 
+ (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21]
 + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t
))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t
))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.
0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(
t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (3.3833333333333337(u(t))[22]
 - 0.9666666666666667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6 / ((
1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(
t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u
(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24
])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 
+ (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[2
3] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 
5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + 
(13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23
] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23
] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u
(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12
)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.8(u(t))[22] + 14.5(
u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t)
)[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*
((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t
))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^
2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[23],
 Differential(t)((u(t))[24]) ~ ((3.3833333333333337(u(t))[23] - 0.966666666
6666667(u(t))[22] - 5.316666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(
t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u
(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.
1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4
)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22
] - 4(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.31666666666666
7(u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(
((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[
26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))
[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*((
(u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4
(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1
//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] +
 (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - 
(u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((
3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t
))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))
[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^
2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[
25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) 
+ (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[2
6] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
3] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2)
 + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6
 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[
24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + 
(u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[
25])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u
(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (
u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[2
5])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[
23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6
 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25
] - 2(u(t))[24])^2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ ((5.316
666666666667(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.3833333333333337(
u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))
[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*(
(3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))
[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^
2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (7.25(u(t))
[24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] -
 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] 
- 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t)
)[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] +
 (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t)
)[24])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)
*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t)
)[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t
))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0
e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t
))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t))[24] 
- 0.9666666666666667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u
(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26
])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23
] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14
.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(
t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24]
 + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25
] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(
t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)
*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (5.8(u(t))[24] + 14.5(u
(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t)
)[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])
^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t)
)[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2
) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[25], 
Differential(t)((u(t))[26]) ~ ((3.3833333333333337(u(t))[25] - 0.9666666666
666667(u(t))[24] - 5.316666666666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(
t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u
(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12
)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24]
 - 4(u(t))[25])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))[27])
 / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) 
+ (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 
+ (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[2
6] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25
] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4
)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.8(u(t))[25] + 14.5
(u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u
(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25
])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[2
7])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(
t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])
^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t)
)[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24]
 - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28
] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(
t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24
] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(
t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((0.1
 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)
*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(
t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t
))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.
0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2)) + (5.316666666666667(u(t))[26] + 0.96666666666
66667(u(t))[28] - 3.3833333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(
t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u
(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12
)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28]
 - 4(u(t))[27])^2))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ ((7.25(u
(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[2
7] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28
])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(
u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[2
7] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(
u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//
12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u
(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(
u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(
t))[28] - 2(u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[26] - 0.96666666
66666667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (
u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (
u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[
26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//
12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3(
u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[2
7] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t))[27]
) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2)
 + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[
25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
6] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))
^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26
] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[29] - 2.9(u(t))[27] - 7
.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(
u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//
12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u
(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[2
8])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (0.9666
666666666667(u(t))[29] + 5.316666666666667(u(t))[27] - 3.3833333333333337(u
(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[
26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (
u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + 
(u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[
28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2
) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)))*(u(t))[27], D
ifferential(t)((u(t))[28]) ~ ((3.3833333333333337(u(t))[27] - 0.96666666666
66667(u(t))[26] - 5.316666666666667(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t)
)[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t)
)[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)
*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] 
- 2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9(u(t))[29]) /
 ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (
13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] -
 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] -
 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] +
 (u(t))[29] - 2(u(t))[28])^2))^2)) + (2.9(u(t))[28] + 7.25(u(t))[27] - 1.45
(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t)
)[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] +
 (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] +
 (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t)
)[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^
2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t)
)[30] - 2.9(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^
2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^
2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t
))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] 
+ (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t
))[29])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))[28]) / ((0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] +
 (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] +
 (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t)
)[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t)
)[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))
[29] - 2(u(t))[28])^2))^2)) + (0.9666666666666667(u(t))[30] + 5.31666666666
6667(u(t))[28] - 3.3833333333333337(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*
((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t
))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t)
)[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)
*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] 
- 2(u(t))[29])^2))^2)))*(u(t))[28], Differential(t)((u(t))[29]) ~ ((0.96666
66666666667(u(t))[31] + 5.316666666666667(u(t))[29] - 3.3833333333333337(u(
t))[30]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//1
2)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u
(t))[27] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[29] + (
u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[3
0])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2)
 + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2)) + (3.3833333333
333337(u(t))[28] - 0.9666666666666667(u(t))[27] - 5.316666666666667(u(t))[2
9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^
2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[
30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))
[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1
//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (2.9(u(t))[28] - 1
4.5(u(t))[29] - 5.8(u(t))[30]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] +
 (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))
[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13/
/12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + 
(u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[3
0])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)) + (5.8(u
(t))[28] + 14.5(u(t))[29] - 2.9(u(t))[30]) / ((0.6 / ((1.0e-6 + (1//4)*(((u
(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[2
8])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(
u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[28
] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^
2)) + (2.9(u(t))[29] + 7.25(u(t))[28] - 1.45(u(t))[27]) / ((0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30]
 - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29
] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) 
+ (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u
(t))[27] - 4(u(t))[28])^2))^2)) + (1.45(u(t))[31] - 2.9(u(t))[29] - 7.25(u(
t))[30]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[
28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u
(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[29] + (
u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[3
0])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2)
 + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2)))*(u(t))[29], 0 
~ 0.2(u(t))[1] + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - (u(t))[2] - 2.0(
u(t))[4], 0 ~ 2.0(u(t))[29] + 0.2(u(t))[31] + (u(t))[27] - 0.2(u(t))[26] - 
(u(t))[30] - 2.0(u(t))[28]], t, SymbolicUtils.Term{Real, Nothing}[(u(t))[3]
, (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[
10], (u(t))[11], (u(t))[12]  …  (u(t))[22], (u(t))[23], (u(t))[24], (u(t))[
25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[2], (u(t))[31]]
, Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation[(u(t))[30] ~
 -0.034482758620689655 / (1 + t) + (u(t))[31], (u(t))[1] ~ -0.0344827586206
89655 / (1 + t) + (u(t))[2]], Base.RefValue{Vector{Symbolics.Num}}(Symbolic
s.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefV
alue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symboli
cs.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Matrix{Symbolic
s.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys2, ModelingToolkit.ODES
ystem[], Dict{Any, Any}((u(t))[17] => 0.5344827586206896, (u(t))[18] => 0.5
689655172413793, (u(t))[8] => 0.22413793103448276, (u(t))[10] => 0.29310344
827586204, (u(t))[27] => 0.8793103448275862, (u(t))[28] => 0.91379310344827
59, (u(t))[2] => 0.017241379310344827, (u(t))[24] => 0.7758620689655172, (u
(t))[30] => 0.9827586206896551, (u(t))[21] => 0.6724137931034483…), nothing
, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback[ModelingTool
kit.SymbolicContinuousCallback(Symbolics.Equation[], Symbolics.Equation[])]
, ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MOLMetadata{Val
{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid},
 MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfL
ines.ScalarizedDiscretization}, ModelingToolkit.PDESystem, Base.RefValue{An
y}, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.DiscreteSpace{1, 
1, MethodOfLines.EdgeAlignedGrid}(MethodOfLines.VariableMap(Any[u(t, x)], S
ymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], t, Dict{Symbo
licUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{Float64, Float
64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sym{SymbolicUti
ls.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Real, Base.Immut
ableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{SymbolicUtils.Fn
Type{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, Base.Immutable
Dict{DataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtils.Sym{Real, B
ase.ImmutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtils.Term{Real, 
Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t, x) => [(u(t
))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u
(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[22], (u(t))[23], (u(t))[24], (u(t
))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[30], (u(t))[
31]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Ste
pRangeLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float6
4}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicUtils.Sym{Real
, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePreci
sion{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => -0.01724137931034
4827:0.034482758620689655:1.0172413793103448), Dict{SymbolicUtils.Sym{Real,
 Base.ImmutableDict{DataType, Any}}, Float64}(x => 0.034482758620689655), D
ict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianI
ndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((30,))), D
ict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, CartesianI
ndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndices((31,)))), 
MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGrid, MethodOfLi
nes.ScalarizedDiscretization}(Dict{Symbolics.Num, Int64}(x => 29), t, 2, Me
thodOfLines.WENOScheme(1.0e-6), MethodOfLines.EdgeAlignedGrid(), true, fals
e, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol, Union{}, Tu
ple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(Symbolics.Equ
ation[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, x)) ~ 0], Sym
bolics.Equation[u(0, x) ~ x, Differential(x)(u(t, 0.0)) ~ 1 / (1 + t), Diff
erential(x)(u(t, 1.0)) ~ 1 / (1 + t)], Symbolics.VarDomainPairing[Symbolics
.VarDomainPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x, 0.0..1.0)], 
Symbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullParameters(), Di
ct{Any, Any}(), nothing, Any[], :pdesys2, nothing), false, Base.RefValue{An
y}(nothing)), nothing, ModelingToolkit.Substitutions(Symbolics.Equation[(u(
t))[30] ~ -0.034482758620689655 / (1 + t) + (u(t))[31], (u(t))[1] ~ -0.0344
82758620689655 / (1 + t) + (u(t))[2]], [Int64[], Int64[]], Symbolics.Equati
on[Differential(t)((u(t))[3]) ~ ((0.049999999999999996 / (1 + t) + 2.9(u(t)
)[3] + 5.8(u(t))[2]) / ((0.3 / ((1.0e-6 + (1//4)*((-0.034482758620689655 / 
(1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.034482758620689655 
/ (1 + t) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13
//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((-0.
034482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-
0.034482758620689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2)) + (0.033333
33333333333 / (1 + t) + 2.416666666666667(u(t))[2] - 5.316666666666667(u(t)
)[3]) / ((0.1 / ((1.0e-6 + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t
))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(
t))[3] - (u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4
])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[
3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((-0.034482758620689
655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.0344827586206
89655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2)) + (2.9(u(t))[2] - 14.5(u(t
))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (1//4)*((-0.034482758620689655 /
 (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.034482758620689655
 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^
2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (1
3//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u
(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2)
)^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1.0e-6 +
 (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) +
 (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[
2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] 
+ (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4
])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (1
3//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.316666666666667(u
(t))[3] + 0.9666666666666667(u(t))[5] - 3.3833333333333337(u(t))[4]) / ((0.
3 / ((1.0e-6 + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(
u(t))[2])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[3] - (u(
t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13/
/12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[
5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t
))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u
(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//4)*((-0.03
4482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.
034482758620689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] 
- 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4
(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.
0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4
] - 2(u(t))[3])^2))^2)))*(u(t))[3], Differential(t)((u(t))[4]) ~ ((3.383333
3333333337(u(t))[3] - 0.9666666666666667(u(t))[2] - 5.316666666666667(u(t))
[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2)
 + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u
(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t)
)[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 
+ (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] +
 (u(t))[2] - 4(u(t))[3])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14.5(u(t)
)[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2
) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(
u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t
))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6
 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 
2(u(t))[4])^2))^2)) + (0.9666666666666667(u(t))[6] + 5.316666666666667(u(t)
)[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[
2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))
[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12
)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] 
- 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[
5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t
))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t
))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//
12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*
((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6
] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t)
)[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(
t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t
))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(
t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13/
/12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[
6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (1
3//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (7.25(u(t))[3] + 2.9
(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t
))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4
] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))
[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) +
 (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)))*(u(t))[4], Differen
tial(t)((u(t))[5]) ~ ((3.3833333333333337(u(t))[4] - 0.9666666666666667(u(t
))[3] - 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5
] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))
[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12
)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] 
- 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[
4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.8(u(t)
)[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4
] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//1
2)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)
*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7]
 - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13/
/12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (0.9666666666666667(u(
t))[7] + 5.316666666666667(u(t))[5] - 3.3833333333333337(u(t))[6]) / ((0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u
(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t)
)[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (
1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*((
(u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 
4(u(t))[6])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.
6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(
t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) +
 (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((
3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] 
- 2(u(t))[4])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) 
+ (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(
((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])
^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3]
 + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (
u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3
(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5]
 + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6
])^2))^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~ ((2.9(u(t))[6] + 7.25(u
(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7
])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[
4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] 
+ (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7
])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (1
3//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (3.3833333333333337(
u(t))[5] - 0.9666666666666667(u(t))[4] - 5.316666666666667(u(t))[6]) / ((0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2)
)^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + 
(13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((
3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] 
- 2(u(t))[5])^2))^2)) + (5.316666666666667(u(t))[6] + 0.9666666666666667(u(
t))[8] - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//
12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8
] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t)
)[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u
(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u
(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13
//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))
[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(
t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(
u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t
))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^
2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (1
3//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t)
)[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + 
(13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)) + (2.9(u(t))[5] - 14
.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t
))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t
))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t)
)[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], Differential(t)((u(t)
)[7]) ~ ((3.3833333333333337(u(t))[6] - 0.9666666666666667(u(t))[5] - 5.316
666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-
6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7]
 + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] +
 (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1/
/4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (7.25(u(t))[6] + 2.9(u
(t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8
])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0
e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[
7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] 
+ (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (
1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (5.8(u(t))[6] + 14.5
(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[
8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))
[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7]
 + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[
8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t
))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))[7] - 7
.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13
//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4
)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))
[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7
] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u
(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(t))[9] + 
5.316666666666667(u(t))[7] - 3.3833333333333337(u(t))[8]) / ((0.6 / ((1.0e-
6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2
(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*((
(u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] 
+ (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8
])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e
-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] 
- 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4
(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1
 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((
3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] 
- (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)))*(
u(t))[7], Differential(t)((u(t))[8]) ~ ((7.25(u(t))[7] + 2.9(u(t))[8] - 1.4
5(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t)
)[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))
[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6]
 - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u
(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] 
- 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2
(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(
((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)
*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (3.3833333333333337(u(t)
)[7] - 0.9666666666666667(u(t))[6] - 5.316666666666667(u(t))[8]) / ((0.3 / 
((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(
u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(
u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (1
3//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(
u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*(
(3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) +
 (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(
((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])
^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8]
 + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - 
(u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(
((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] 
- (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + 
(0.9666666666666667(u(t))[10] + 5.316666666666667(u(t))[8] - 3.383333333333
3337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u
(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(
t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))
[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*(
(3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)))*(u(t))[8], Differential(t)(
(u(t))[9]) ~ ((2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))
[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9
] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t
))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13
//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(
u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((
0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//
4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))
[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10]
)^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + 
(u(t))[11] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[8] - 0.966666
6666666667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(
t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t
))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(
t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + 
(u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])
^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-
6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7]
 + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[
10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//1
2)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))
^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] +
 (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + 
(u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(
((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8]
 - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))
 + (5.316666666666667(u(t))[9] + 0.9666666666666667(u(t))[11] - 3.383333333
3333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4
(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1
 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*
((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) +
 (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)))*(u(t))[9], Differ
ential(t)((u(t))[10]) ~ ((5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / 
((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1/
/4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//
12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u
(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t
))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[1
1] - 2(u(t))[10])^2))^2)) + (7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8])
 / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + 
(1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] +
 (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (
u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(
t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10]
 - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] -
 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] 
+ (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10]
 + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t
))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11]
)^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)) + (3.383333
3333333337(u(t))[9] - 0.9666666666666667(u(t))[8] - 5.316666666666667(u(t))
[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] 
- 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12]
 - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*(
(3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (2.9(u(t))[9] - 5.8(u(t))[
11] - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10
] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[
9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(
u(t))[11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (0.9666666666666667(u(t
))[12] + 5.316666666666667(u(t))[10] - 3.3833333333333337(u(t))[11]) / ((0.
3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*
((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))
[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[1
1])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 
+ (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[1
0] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Differential(t)((u(t))[
11]) ~ ((2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6
 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12
] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13
] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) 
+ (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (13//1
2)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t
))[9] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[10] - 0.9666666666
666667(u(t))[9] - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t)
)[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[
12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(
((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t)
)[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(
u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]) / ((0
.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4
)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t
))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t
))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.
0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t)
)[12] - 2(u(t))[11])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[
12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))
[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))
[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2)
)^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[1
0] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))[11] - 
7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(
u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10]
 + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11]
 + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(
t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12]
)^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (5.31666
6666666667(u(t))[11] + 0.9666666666666667(u(t))[13] - 3.3833333333333337(u(
t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//1
2)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u
(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10]
)^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + 
(13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[11], Diff
erential(t)((u(t))[12]) ~ ((5.316666666666667(u(t))[12] + 0.966666666666666
7(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[1
2])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[
11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3
(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4
(u(t))[13])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[10]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[
11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4
(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 
2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((
3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (1.45(u(t))[14] - 2.9(u(t
))[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[
13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / 
((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((
3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))
[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] -
 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))
 + (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2
(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 
2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1
//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[
12])^2))^2)) + (3.3833333333333337(u(t))[11] - 0.9666666666666667(u(t))[10]
 - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - 
(u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1
//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] +
 (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t)
)[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^
2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e
-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[
13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))
[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^
2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2
(u(t))[12])^2))^2)))*(u(t))[12]  …  Differential(t)((u(t))[22]) ~ ((3.38333
33333333337(u(t))[21] - 0.9666666666666667(u(t))[20] - 5.316666666666667(u(
t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[2
1])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u
(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u
(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[2
3])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) 
+ (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (5.8(u(t))[21
] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[2
2] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(
u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) +
 (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[2
2] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(
t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (
2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(
t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t
))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12
)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])
^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(
t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])
^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])
^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + 
(1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20]
 + (u(t))[22] - 2(u(t))[21])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[22] - 7.
25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(
t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21]
 + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22]
 + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(
t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23]
)^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (0.96666
66666666667(u(t))[24] + 5.316666666666667(u(t))[22] - 3.3833333333333337(u(
t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[2
1])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u
(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u
(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[2
3])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) 
+ (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], Di
fferential(t)((u(t))[23]) ~ ((3.3833333333333337(u(t))[22] - 0.966666666666
6667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4)*(
((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))
[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t)
)[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*
(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] -
 4(u(t))[22])^2))^2)) + (5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))
[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 
4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 
4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))
*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + 
(u(t))[24] - 2(u(t))[23])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] - 5.8(u
(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//
12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13/
/12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (
u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (
u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[
24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((
u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.316666666666667(u(t))[23
] + 0.9666666666666667(u(t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (
u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + 
(u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[
22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[
24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-
6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))
[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] 
- 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2)
 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-
6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))
[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 
2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t)
)[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (1.4
5(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(
((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))
[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t)
)[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*
(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] -
 2(u(t))[24])^2))^2)))*(u(t))[23], Differential(t)((u(t))[24]) ~ ((1.45(u(t
))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t
))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])
^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25]
)^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.
0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(
t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24
] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(
t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22]) / ((0.
1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4
)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u
(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(
t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u
(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5(u(t))[
24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26
] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) 
+ (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25]
 - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (
13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (3.3833333333333
337(u(t))[23] - 0.9666666666666667(u(t))[22] - 5.316666666666667(u(t))[24])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(
t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26]
 - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24
] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4
)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (2.9(u(t))[23] - 14.5
(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t
))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)
*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(
t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])
^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (0.966666
6666666667(u(t))[26] + 5.316666666666667(u(t))[24] - 3.3833333333333337(u(t
))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[2
5])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((
1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(
u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) 
+ (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)))*(u(t))[24], Dif
ferential(t)((u(t))[25]) ~ ((7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[23
]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2)
 + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))
[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2)
)^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13/
/12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.316666666666667(
u(t))[25] + 0.9666666666666667(u(t))[27] - 3.3833333333333337(u(t))[26]) / 
((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (1
3//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] 
+ (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] -
 (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*(
(3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (1.45(u(t))[27] - 2.9(u(
t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t)
)[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*
(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t)
)[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] 
- 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)
) + (3.3833333333333337(u(t))[24] - 0.9666666666666667(u(t))[23] - 5.316666
666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23]
 - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(
t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u
(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27]
 - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(
t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (
5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(
t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u
(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12
)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])
^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t
))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])
^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 
2(u(t))[25])^2))^2)))*(u(t))[25], Differential(t)((u(t))[26]) ~ ((2.9(u(t))
[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(
t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] 
- 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28]
 - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t
))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24]
 + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t
))[25])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*
((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12
)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t
))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t)
)[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))
[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25(u(t))[
27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])
^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0
e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t
))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^
2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (
1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.31666666666666
7(u(t))[26] + 0.9666666666666667(u(t))[28] - 3.3833333333333337(u(t))[27]) 
/ ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) +
 (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26
] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25]
 - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)
*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (3.3833333333333337(u(
t))[25] - 0.9666666666666667(u(t))[24] - 5.316666666666667(u(t))[26]) / ((0
.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//
4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (
u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u
(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(
u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))
[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[2
6] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))
^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2)
 + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27
] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + 
(13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)))*(u(t))[26], Diff
erential(t)((u(t))[27]) ~ ((3.3833333333333337(u(t))[26] - 0.96666666666666
67(u(t))[25] - 5.316666666666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(
((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[
29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[
25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*((
(u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[
27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2
(u(t))[26])^2))^2)) + (1.45(u(t))[29] - 2.9(u(t))[27] - 7.25(u(t))[28]) / (
(0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1
//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] +
 (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - 
(u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((
3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (0.9666666666666667(u(t))
[29] + 5.316666666666667(u(t))[27] - 3.3833333333333337(u(t))[28]) / ((0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)
*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t)
)[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t
))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0
e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t
))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (7.25(u(t))[26] + 2.9(u(t))[27
] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] 
- 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t
))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(
t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] 
- 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t
))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5
.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*
((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t)
)[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 
/ ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*
((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^
2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.3 / ((1.0e
-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t)
)[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] -
 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2
) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2
(u(t))[27])^2))^2)))*(u(t))[27], Differential(t)((u(t))[28]) ~ ((3.38333333
33333337(u(t))[27] - 0.9666666666666667(u(t))[26] - 5.316666666666667(u(t))
[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*
(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t)
)[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((-0.03448275862068
9655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*((-0.03
4482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])^2))^2)
)*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)
*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (2.9(u(t))[28] + 7.25(u
(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t
))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-0.034482758620689655 / (1 + t) + (u
(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*((-0.034482758620689655 / 
(1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t
))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (2
.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t)
)[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t)
)[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t
))[31] - 2(u(t))[29])^2) + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t
))[28] + (u(t))[31] - 4(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] -
 (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2))
 + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9(u(t))[29]) / ((0.3 / ((1.0e-6 + (1
//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] +
 (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-0.03448275
8620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*(
(-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(
((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[
27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2)
)^2)) + (-0.03333333333333333 / (1 + t) + 0.9666666666666667(u(t))[31] + 5.
316666666666667(u(t))[28] - 3.3833333333333337(u(t))[29]) / ((0.3 / ((1.0e-
6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))
[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-0.03
4482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (1
//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t))
[29])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13/
/12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2))*((1.0e-6 + (13//12)*(
(-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2
) + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4
(u(t))[29])^2))^2)) + (-0.049999999999999996 / (1 + t) + 1.45(u(t))[31] - 2
.9(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (
u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (13
//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))
[29])^2) + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[
31] - 4(u(t))[29])^2))^2))*((1.0e-6 + (13//12)*((-0.034482758620689655 / (1
 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*((-0.03448275862
0689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])^2))^2)))*(u(t))
[28], Differential(t)((u(t))[29]) ~ ((0.11666666666666668 / (1 + t) + 5.316
666666666667(u(t))[29] - 2.416666666666667(u(t))[31]) / ((0.6 / ((1.0e-6 + 
(1//4)*((0.034482758620689655 / (1 + t) + (u(t))[28] - (u(t))[31])^2) + (13
//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))
[29])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) + 3(
u(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 + t) + 
(u(t))[29] - (u(t))[31])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + 
(u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[
28])^2))^2))*((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u(t))[29
] - 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 + t) + (u(t))[2
9] - (u(t))[31])^2))^2)) + (0.25 / (1 + t) - 2.9(u(t))[29] - 5.8(u(t))[31])
 / ((0.3 / ((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u(t))[29] 
- 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 + t) + (u(t))[29]
 - (u(t))[31])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29]
 - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t))[28] -
 (u(t))[31])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] +
 (u(t))[31] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((0.13793103448275862 
/ (1 + t) + 3(u(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.0689655172413793
1 / (1 + t) + (u(t))[29] - (u(t))[31])^2))^2)) + (2.9(u(t))[29] + 7.25(u(t)
)[28] - 1.45(u(t))[27]) / ((0.6 / ((1.0e-6 + (1//4)*((0.034482758620689655 
/ (1 + t) + (u(t))[28] - (u(t))[31])^2) + (13//12)*((-0.034482758620689655 
/ (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((0.13793103448275862 / (1 + t) + 3(u(t))[29] - 3.0(u(t))[31])^2) 
+ (13//12)*((0.06896551724137931 / (1 + t) + (u(t))[29] - (u(t))[31])^2))^2
) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) +
 (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2))*((1.0e-6 + (13//1
2)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(
t))[27] - 4(u(t))[28])^2))^2)) + (3.3833333333333337(u(t))[28] - 0.96666666
66666667(u(t))[27] - 5.316666666666667(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//
4)*((0.13793103448275862 / (1 + t) + 3(u(t))[29] - 3.0(u(t))[31])^2) + (13/
/12)*((0.06896551724137931 / (1 + t) + (u(t))[29] - (u(t))[31])^2))^2) + 0.
1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4
)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*((0.034482758620689655 / (1 + t) + (u(t))[28] - (u(t))[31])^2) + (13//12)
*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + 
(1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (0.1999999999999
9998 / (1 + t) + 2.9(u(t))[28] - 5.8(u(t))[31] - 14.5(u(t))[29]) / ((0.3 / 
((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u(t))[29] - 3.0(u(t))
[31])^2) + (13//12)*((0.06896551724137931 / (1 + t) + (u(t))[29] - (u(t))[3
1])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[
28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t))[28] - (u(t))[31]
)^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31]
 - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) 
+ (u(t))[28] - (u(t))[31])^2) + (13//12)*((-0.034482758620689655 / (1 + t) 
+ (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2))^2)) + (0.09999999999999999 / (
1 + t) + 5.8(u(t))[28] + 14.5(u(t))[29] - 2.9(u(t))[31]) / ((0.6 / ((1.0e-6
 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t))[28] - (u(t))[31])^2) + 
(13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(
t))[29])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) +
 3(u(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 + t)
 + (u(t))[29] - (u(t))[31])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27]
 + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t
))[28])^2))^2))*((1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t))
[28] - (u(t))[31])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))
[28] + (u(t))[31] - 2(u(t))[29])^2))^2)))*(u(t))[29], 0 ~ -0.00689655172413
7931 / (1 + t) + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 0.8(u(t))[2] - 2
.0(u(t))[4], 0 ~ 0.034482758620689655 / (1 + t) + 2.0(u(t))[29] + (u(t))[27
] - 0.2(u(t))[26] - 2.0(u(t))[28] - 0.8(u(t))[31]])), Any[(u(t))[3], (u(t))
[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10], (u(
t))[11], (u(t))[12]  …  Differential(t)((u(t))[22]), Differential(t)((u(t))
[23]), Differential(t)((u(t))[24]), Differential(t)((u(t))[25]), Differenti
al(t)((u(t))[26]), Differential(t)((u(t))[27]), Differential(t)((u(t))[28])
, Differential(t)((u(t))[29]), (u(t))[2], (u(t))[31]], ModelingToolkit.Syst
emStructures.SystemStructure(ModelingToolkit.SystemStructures.DiffGraph(Uni
on{Nothing, Int64}[28, 29, 30, 31, 32, 33, 34, 35, 36, 37  …  nothing, noth
ing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing
], Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothing, nothi
ng, nothing, nothing, nothing, nothing  …  20, 21, 22, 23, 24, 25, 26, 27, 
nothing, nothing]), ModelingToolkit.SystemStructures.DiffGraph(Union{Nothin
g, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, nothing, no
thing, nothing, nothing  …  nothing, nothing, nothing, nothing, nothing, no
thing, nothing, nothing, nothing, nothing], Union{Nothing, Int64}[nothing, 
nothing, nothing, nothing, nothing, nothing, nothing, nothing, nothing, not
hing  …  nothing, nothing, nothing, nothing, nothing, nothing, nothing, not
hing, nothing, nothing]), BipartiteGraph with (29, 56) (𝑠,𝑑)-vertices
   #  src                    dst
  1   [1, 2, 3, 28, 55]      [1, 2, 3, 28]
  2   [1, 2, 3, 4, 29, 55]   [1, 2, 3, 4, 28]
  3   [1, 2, 3, 4, 5, 30]    [1, 2, 3, 4, 5, 28]
  4   [2, 3, 4, 5, 6, 31]    [2, 3, 4, 5, 6, 28]
  5   [3, 4, 5, 6, 7, 32]    [3, 4, 5, 6, 7]
  6   [4, 5, 6, 7, 8, 33]    [4, 5, 6, 7, 8]
  7   [5, 6, 7, 8, 9, 34]    [5, 6, 7, 8, 9]
  8   [6, 7, 8, 9, 10, 35]   [6, 7, 8, 9, 10]
  9   [7, 8, 9, 10, 11, 36]  [7, 8, 9, 10, 11]
  ⋮                          
 48   ⋅                      [21]
 49   ⋅                      [22]
 50   ⋅                      [23]
 51   ⋅                      [24]
 52   ⋅                      [25]
 53   ⋅                      [26]
 54   ⋅                      [27]
 55   ⋅                      [1, 2, 28]
 56   ⋅                      [26, 27, 29], BipartiteGraph with (31, 58) (𝑠,
𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    [31]
 52   ⋅    [31]
 53   ⋅    [31]
 54   ⋅    [31]
 55   ⋅    [28, 30]
 56   ⋅    [28, 30]
 57   ⋅    [29, 31]
 58   ⋅    [29, 31]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equat
ion[(u(t))[30] ~ -0.034482758620689655 / (1 + t) + (u(t))[31], (u(t))[1] ~ 
-0.034482758620689655 / (1 + t) + (u(t))[2]], [Int64[], Int64[]], Symbolics
.Equation[Differential(t)((u(t))[3]) ~ ((0.049999999999999996 / (1 + t) + 2
.9(u(t))[3] + 5.8(u(t))[2]) / ((0.3 / ((1.0e-6 + (1//4)*((-0.03448275862068
9655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.034482758620
689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4
)*((-0.034482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//
12)*((-0.034482758620689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2)) + (0
.03333333333333333 / (1 + t) + 2.416666666666667(u(t))[2] - 5.3166666666666
67(u(t))[3]) / ((0.1 / ((1.0e-6 + (1//4)*((-0.034482758620689655 / (1 + t) 
+ 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.034482758620689655 / (1 + t
) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (
u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((-0.03448275
8620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.034482
758620689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2)) + (2.9(u(t))[2] - 1
4.5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (1//4)*((-0.0344827586206
89655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.03448275862
0689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))
[3])^2))^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1
.0e-6 + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2
])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[3] - (u(t))[2])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*((
(u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(
u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.3166666666
66667(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.3833333333333337(u(t))[4])
 / ((0.3 / ((1.0e-6 + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[3]
 - 3.0(u(t))[2])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[3
] - (u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2)
 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + 
(u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] 
- 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) +
 (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//4)*
((-0.034482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12
)*((-0.034482758620689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(
t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))
[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2
))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (
u(t))[4] - 2(u(t))[3])^2))^2)))*(u(t))[3], Differential(t)((u(t))[4]) ~ ((3
.3833333333333337(u(t))[3] - 0.9666666666666667(u(t))[2] - 5.31666666666666
7(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))
[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5
] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] -
 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t
))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14
.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t)
)[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[
5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] 
- 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*(
(1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2)) + (0.9666666666666667(u(t))[6] + 5.3166666666666
67(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*((
(u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 
4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + 
(13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(
t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4
(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1
.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*
(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] 
- 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) 
+ (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (
u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] -
 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + 
(5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)
*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2]
 - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2)
 + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (7.25(u(t))[3
] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2]
 + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*
(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 
2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3
])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)))*(u(t))[4], D
ifferential(t)((u(t))[5]) ~ ((3.3833333333333337(u(t))[4] - 0.9666666666666
667(u(t))[3] - 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 
2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + 
(13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(
t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4
(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5
.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u
(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2)
 + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (0.966666666666
6667(u(t))[7] + 5.316666666666667(u(t))[5] - 3.3833333333333337(u(t))[6]) /
 ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[
4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] 
+ (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4
])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])
^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t)
)[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t)
)[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5
] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))
[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6
])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(
t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]
) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t)
)[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u
(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)
 + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1/
/4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(
u(t))[6])^2))^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~ ((2.9(u(t))[6] +
 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (
u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*((
(u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(
u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^
2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (3.3833333333
333337(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.316666666666667(u(t))[6])
 / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (1
3//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))
[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(
t))[6] - 2(u(t))[5])^2))^2)) + (5.316666666666667(u(t))[6] + 0.966666666666
6667(u(t))[8] - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^
2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) 
+ (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + 
(1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (
u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] -
 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + 
(1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6
] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2
) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8]
 - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) 
+ (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^
2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] 
+ (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7]
)^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)) + (2.9(u(t))[
5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6]
 + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)
*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//1
2)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], Differential(t
)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.9666666666666667(u(t))[5] 
- 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(
t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u
(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(
t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2
) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (7.25(u(t))[6] 
+ 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (
u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3
(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(
u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])
^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (5.8(u(t))[6]
 + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - 
(u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((
3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2
(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)
*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))
[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2
) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (
u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//1
2)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(t)
)[9] + 5.316666666666667(u(t))[7] - 3.3833333333333337(u(t))[8]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t
))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))
[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(
u(t))[8])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(
t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))
[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1
//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))
^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ ((7.25(u(t))[7] + 2.9(u(t))[8
] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] -
 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u
(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//1
2)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[10] - 2.9(u(
t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[
10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13
//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[
8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) +
 (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (3.38333333333333
37(u(t))[7] - 0.9666666666666667(u(t))[6] - 5.316666666666667(u(t))[8]) / (
(0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//
4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[
8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^
2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t)
)[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) 
/ ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (
1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t
))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9
])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(
t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / (
(1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u
(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13
//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))
^2)) + (0.9666666666666667(u(t))[10] + 5.316666666666667(u(t))[8] - 3.38333
33333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10
] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] +
 (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (
1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)))*(u(t))[8], Different
ial(t)((u(t))[9]) ~ ((2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(
((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] 
- 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2
) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t)
)[9] - 2(u(t))[8])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10
]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2)
 + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(
t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0
e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t)
)[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[8] - 0
.9666666666666667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((0.3 / ((1.0e-6
 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9
] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9]
 + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[
8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12
)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(
t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u
(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4
(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) +
 (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.
0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t
))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(
t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13
//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u
(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2))^2)) + (5.316666666666667(u(t))[9] + 0.9666666666666667(u(t))[11] - 3.38
33333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))
[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + 
(1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(
u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10
])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)))*(u(t))[9],
 Differential(t)((u(t))[10]) ~ ((5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[
11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2
) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[1
0] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9]
 - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (
u(t))[11] - 2(u(t))[10])^2))^2)) + (7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(
t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9]
)^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e
-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t)
)[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)
*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (1.45(u(t))[12] - 2.9(u(
t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t)
)[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(
t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(
t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] 
- 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(
t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)) + (3
.3833333333333337(u(t))[9] - 0.9666666666666667(u(t))[8] - 5.31666666666666
7(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t
))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t
))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (
1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (2.9(u(t))[9] - 5.8
(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u
(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*((
(u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((
(u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[1
2] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + 
(13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (0.9666666666666
667(u(t))[12] + 5.316666666666667(u(t))[10] - 3.3833333333333337(u(t))[11])
 / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + 
(1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] +
 (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (
u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(
u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Differential(t)(
(u(t))[11]) ~ ((2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u
(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u
(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[1
2])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[1
0])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11]
 + (u(t))[9] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[10] - 0.966
6666666666667(u(t))[9] - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] 
+ (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - 
(u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13
//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[
9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]
) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) 
+ (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] 
- 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2
))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] 
+ (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9
(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13
//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] +
 (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[
10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((
u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))
[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[1
1] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(
t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13]
 - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(
t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (
5.316666666666667(u(t))[11] + 0.9666666666666667(u(t))[13] - 3.383333333333
3337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) +
 (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[1
1] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(
t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12]
)^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[11
], Differential(t)((u(t))[12]) ~ ((5.316666666666667(u(t))[12] + 0.96666666
66666667(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(
u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2
(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 
0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1/
/4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[
14] - 4(u(t))[13])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[1
0]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*((
(u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[
10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))
[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1
//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (1.45(u(t))[14] - 
2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - 
(u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1
//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] +
 (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t)
)[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^
2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e
-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[
13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))
[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^
2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2
(u(t))[12])^2))^2)) + (3.3833333333333337(u(t))[11] - 0.9666666666666667(u(
t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))
[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^
2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t)
)[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] 
+ (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t)
)[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + 
(u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))
[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t)
)[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e
-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[
13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Differential(t)((u(t))[22]) ~ ((
3.3833333333333337(u(t))[21] - 0.9666666666666667(u(t))[20] - 5.31666666666
6667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(
u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[2
1] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[2
2] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(
u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[2
1])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (5.8(u
(t))[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[2
2] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23
])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((
u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21
] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^
2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20
] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21]
 - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2
) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + 
(13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)
*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12
)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t
))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.
0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(
t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[2
2] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20]
 - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(
t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24]
 - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(
t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (
0.9666666666666667(u(t))[24] + 5.316666666666667(u(t))[22] - 3.383333333333
3337(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(
u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[2
1] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[2
2] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(
u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[2
3])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[
22], Differential(t)((u(t))[23]) ~ ((3.3833333333333337(u(t))[22] - 0.96666
66666666667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] -
 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (1
3//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t)
)[21] - 4(u(t))[22])^2))^2)) + (5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[
24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(
((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))
[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))
[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))
[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] 
- 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) 
+ (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6
 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[
23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2
(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//
12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.316666666666667(u
(t))[23] + 0.9666666666666667(u(t))[25] - 3.3833333333333337(u(t))[24]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[
22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4
(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4
(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(
((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t
))[22] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[
24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((
3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))
[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] -
 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2))
 + (1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] -
 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (1
3//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t)
)[25] - 2(u(t))[24])^2))^2)))*(u(t))[23], Differential(t)((u(t))[24]) ~ ((1
.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(
t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1
 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)
*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26]
 - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22])
 / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) 
+ (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 
+ (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[2
4] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23
] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4
)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5
(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u
(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[2
3])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(
t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])
^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (3.383333
3333333337(u(t))[23] - 0.9666666666666667(u(t))[22] - 5.316666666666667(u(t
))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12
)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(
t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u
(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) 
+ (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (2.9(u(t))[23]
 - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23]
 - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2
) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) +
 (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24
] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t
))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (0
.9666666666666667(u(t))[26] + 5.316666666666667(u(t))[24] - 3.3833333333333
337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(
u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//
4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u
(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[2
5])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)))*(u(t))[2
4], Differential(t)((u(t))[25]) ~ ((7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u
(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[
24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / 
((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((
3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[
25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2)
 + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.316666666
666667(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.3833333333333337(u(t))[
26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^
2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0
e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t
))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^
2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (
1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (1.45(u(t))[27] -
 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] 
+ (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (1
3//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] 
+ (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])
^2))^2)) + (3.3833333333333337(u(t))[24] - 0.9666666666666667(u(t))[23] - 5
.316666666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(
t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12
)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(
t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23]
 - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^
2)) + (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23
] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
5] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u
(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + 
(13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)
*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t
))[25])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)
*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t)
)[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t
))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))
[26] - 2(u(t))[25])^2))^2)))*(u(t))[25], Differential(t)((u(t))[26]) ~ ((2.
9(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12
)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t
))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(
t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)
*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] 
- 4(u(t))[25])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) /
 ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + 
(1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26]
 + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] 
- (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] +
 (u(t))[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25
(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t
))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*
((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t)
)[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])
^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.3166666
66666667(u(t))[26] + 0.9666666666666667(u(t))[28] - 3.3833333333333337(u(t)
)[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25
])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u
(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) +
 (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (3.383333333333
3337(u(t))[25] - 0.9666666666666667(u(t))[24] - 5.316666666666667(u(t))[26]
) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2)
 + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[
26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
5] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//
4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.
5(u(t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (
u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[2
5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[
27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u
(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27]
)^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)))*(u(t))[26
], Differential(t)((u(t))[27]) ~ ((3.3833333333333337(u(t))[26] - 0.9666666
666666667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (13
//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + 
(u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + 
(u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))
[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[
27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[29] - 2.9(u(t))[27] - 7.25(u(t))[2
8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^
2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t)
)[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1
//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (0.966666666666666
7(u(t))[29] + 5.316666666666667(u(t))[27] - 3.3833333333333337(u(t))[28]) /
 ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (
13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] -
 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*
((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (7.25(u(t))[26] + 2.9(u
(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t
))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)
*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12
)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t
))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] 
- 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2
)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25]
 + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] 
- (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + 
(1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t)
)[27])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*(
(3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))
[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e
-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[
28] - 2(u(t))[27])^2))^2)))*(u(t))[27], Differential(t)((u(t))[28]) ~ ((3.3
833333333333337(u(t))[27] - 0.9666666666666667(u(t))[26] - 5.31666666666666
7(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (1
3//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (
1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] 
+ (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((-0.0344827
58620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*
((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (
13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (2.9(u(t))[28] +
 7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28]
 + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(
t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-0.034482758620689655 / (1 + 
t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*((-0.03448275862068
9655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t
))[29] - 2(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] 
- 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2
)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))[28]) / ((0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] -
 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] -
 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)
 + 0.3 / ((1.0e-6 + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28]
 + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*((-0.034482758620689655 / (1 + t) 
+ 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^
2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9(u(t))[29]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t)
)[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-0.0
34482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (
1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t)
)[29])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13
//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[
28])^2))^2)) + (-0.03333333333333333 / (1 + t) + 0.9666666666666667(u(t))[3
1] + 5.316666666666667(u(t))[28] - 3.3833333333333337(u(t))[29]) / ((0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^
2) + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 
4(u(t))[29])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2)
 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2))*((1.0e-6 + (13
//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))
[29])^2) + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[
31] - 4(u(t))[29])^2))^2)) + (-0.049999999999999996 / (1 + t) + 1.45(u(t))[
31] - 2.9(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2)
)^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2)
 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-
6 + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 
2(u(t))[29])^2) + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + 
(u(t))[31] - 4(u(t))[29])^2))^2))*((1.0e-6 + (13//12)*((-0.0344827586206896
55 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*((-0.0344
82758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])^2))^2)))
*(u(t))[28], Differential(t)((u(t))[29]) ~ ((0.11666666666666668 / (1 + t) 
+ 5.316666666666667(u(t))[29] - 2.416666666666667(u(t))[31]) / ((0.6 / ((1.
0e-6 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t))[28] - (u(t))[31])^2
) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 
2(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + 
t) + 3(u(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 
+ t) + (u(t))[29] - (u(t))[31])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4
(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u
(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 + t) + (
u(t))[29] - (u(t))[31])^2))^2)) + (0.25 / (1 + t) - 2.9(u(t))[29] - 5.8(u(t
))[31]) / ((0.3 / ((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u(t
))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 + t) + (u(
t))[29] - (u(t))[31])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(
t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t)
)[28] - (u(t))[31])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t)
)[28] + (u(t))[31] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((0.13793103448
275862 / (1 + t) + 3(u(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.068965517
24137931 / (1 + t) + (u(t))[29] - (u(t))[31])^2))^2)) + (2.9(u(t))[29] + 7.
25(u(t))[28] - 1.45(u(t))[27]) / ((0.6 / ((1.0e-6 + (1//4)*((0.034482758620
689655 / (1 + t) + (u(t))[28] - (u(t))[31])^2) + (13//12)*((-0.034482758620
689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u(t))[29] - 3.0(u(t))[3
1])^2) + (13//12)*((0.06896551724137931 / (1 + t) + (u(t))[29] - (u(t))[31]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28
])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29
] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (3.3833333333333337(u(t))[28] - 0.9
666666666666667(u(t))[27] - 5.316666666666667(u(t))[29]) / ((0.3 / ((1.0e-6
 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u(t))[29] - 3.0(u(t))[31])^2)
 + (13//12)*((0.06896551724137931 / (1 + t) + (u(t))[29] - (u(t))[31])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) 
+ (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*((0.034482758620689655 / (1 + t) + (u(t))[28] - (u(t))[31])^2) + (
13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t
))[29])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28]
)^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (0.199999
99999999998 / (1 + t) + 2.9(u(t))[28] - 5.8(u(t))[31] - 14.5(u(t))[29]) / (
(0.3 / ((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u(t))[29] - 3.
0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 + t) + (u(t))[29] - (
u(t))[31])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2
(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t))[28] - (u(
t))[31])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(
t))[31] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((0.034482758620689655 / (
1 + t) + (u(t))[28] - (u(t))[31])^2) + (13//12)*((-0.034482758620689655 / (
1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2))^2)) + (0.09999999999999
999 / (1 + t) + 5.8(u(t))[28] + 14.5(u(t))[29] - 2.9(u(t))[31]) / ((0.6 / (
(1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t))[28] - (u(t))[31]
)^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31]
 - 2(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.13793103448275862 / (1
 + t) + 3(u(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / 
(1 + t) + (u(t))[29] - (u(t))[31])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(
t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] 
- 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) +
 (u(t))[28] - (u(t))[31])^2) + (13//12)*((-0.034482758620689655 / (1 + t) +
 (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2))^2)))*(u(t))[29], 0 ~ -0.0068965
51724137931 / (1 + t) + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 0.8(u(t))
[2] - 2.0(u(t))[4], 0 ~ 0.034482758620689655 / (1 + t) + 2.0(u(t))[29] + (u
(t))[27] - 0.2(u(t))[26] - 2.0(u(t))[28] - 0.8(u(t))[31]])), Dict{Any, Any}
()), nothing, ModelingToolkit.ODESystem(Symbolics.Equation[Differential(t)(
(u(t))[3]) ~ ((3.3833333333333337(u(t))[2] - 0.9666666666666667(u(t))[1] - 
5.316666666666667(u(t))[3]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(
t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t
))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t)
)[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) 
+ (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2)) + (5.8(u(t))[2] + 1
4.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u
(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(
t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t
))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((
u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] 
- 7.25(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(
u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(
t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))
[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(
((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[3] + 7.25(u(t))[2
] - 1.45(u(t))[1]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 
2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (
u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t
))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*
((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2)) + (5.316666666666667(u(t))[3
] + 0.9666666666666667(u(t))[5] - 3.3833333333333337(u(t))[4]) / ((0.3 / ((
1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t
))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//1
2)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(
t))[4])^2))^2)) + (2.9(u(t))[2] - 14.5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / (
(1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(
t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//
12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2
)))*(u(t))[3], Differential(t)((u(t))[4]) ~ ((7.25(u(t))[3] + 2.9(u(t))[4] 
- 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(
u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(
t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))
[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2
))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((
3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4
] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2
(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u
(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t)
)[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^
2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + 
(u(t))[5] - 2(u(t))[4])^2))^2)) + (3.3833333333333337(u(t))[3] - 0.96666666
66666667(u(t))[2] - 5.316666666666667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[
2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6
 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] 
+ (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[
4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2))
 + (0.9666666666666667(u(t))[6] + 5.316666666666667(u(t))[4] - 3.3833333333
333337(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(
u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(
t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))
[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5]
 - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2
(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u
(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t)
)[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^
2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + 
(u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t)
)[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2
) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(
u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t
))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] 
+ (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ 
((0.9666666666666667(u(t))[7] + 5.316666666666667(u(t))[5] - 3.383333333333
3337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (1
3//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[
7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(
u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (3.3833333333333337(u(t))[4] -
 0.9666666666666667(u(t))[3] - 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3
] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - 
(u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((
3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5]
 + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[
4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6]
 - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 
4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.
1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*(
(3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4]
 - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) +
 (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6
 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] 
+ (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3
] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))
 + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6]
)^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5
] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t)
)[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2
)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t
))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6
])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0
e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[
5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))
[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[5]
, Differential(t)((u(t))[6]) ~ ((3.3833333333333337(u(t))[5] - 0.9666666666
666667(u(t))[4] - 5.316666666666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6]
 - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2)
 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + 
(u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] 
- 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) +
 (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6
] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2
) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])
^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)) + (1.45(u(t))[
8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6]
 + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)
*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7
])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.3166666
66666667(u(t))[6] + 0.9666666666666667(u(t))[8] - 3.3833333333333337(u(t))[
7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))
[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 +
 (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + 
(u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t)
)[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*((
(u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(
u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t
))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] 
+ (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t
))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u
(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2
(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(
t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-
6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] -
 2(u(t))[6])^2))^2)))*(u(t))[6], Differential(t)((u(t))[7]) ~ ((3.383333333
3333337(u(t))[6] - 0.9666666666666667(u(t))[5] - 5.316666666666667(u(t))[7]
) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t
))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t)
)[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u
(t))[5] - 4(u(t))[6])^2))^2)) + (0.9666666666666667(u(t))[9] + 5.3166666666
66667(u(t))[7] - 3.3833333333333337(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(
((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])
^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2
) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + 
(u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] 
- 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) +
 (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])
^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] 
+ (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[
7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))
 + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[
7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7]
 + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8
])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (5.8(u(t))
[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6]
 - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)
*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] 
- 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//
12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(
t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] 
+ (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6]
)^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13
//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))[7], Differentia
l(t)((u(t))[8]) ~ ((3.3833333333333337(u(t))[7] - 0.9666666666666667(u(t))[
6] - 5.316666666666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[
9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-
6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] -
 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7
])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (7.25(u(t)
)[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))
[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(
t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[
8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t
))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (0.966
6666666666667(u(t))[10] + 5.316666666666667(u(t))[8] - 3.3833333333333337(u
(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9
])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9]
 - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 
4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t
))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (1.45(u(t))[10] - 2.9(u(t))[8] -
 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(
u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*((
(u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*
((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))
[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10]
 - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//1
2)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(
((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])
^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[
7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(
u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9
] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] -
 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((
1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))
[9] - 2(u(t))[8])^2))^2)))*(u(t))[8], Differential(t)((u(t))[9]) ~ ((5.3166
66666666667(u(t))[9] + 0.9666666666666667(u(t))[11] - 3.3833333333333337(u(
t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])
^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-
6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[
9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8]
 - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((
3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t)
)[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[1
1] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (1
3//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t
))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^
2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (3.383333333
3333337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.316666666666667(u(t))[9]
) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) 
+ (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + 
(u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t
))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e
-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u
(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[
10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t
))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8
] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (
u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t)
)[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2)
 + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] 
+ (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - 
(u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((
1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t
))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2
.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t)
)[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((
1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u
(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2)
)^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2))^2)))*(u(t))[9], Differential(t)((u(t))[10])
 ~ ((7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (
u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u
(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)
*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t
))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(
u(t))[9])^2))^2)) + (5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[11]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*(
(3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[
12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11
])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 +
 (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 
2(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[9] - 0.9666666666666667(u(
t))[8] - 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u
(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (1
3//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] +
 (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))
[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^
2)) + (0.9666666666666667(u(t))[12] + 5.316666666666667(u(t))[10] - 3.38333
33333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[1
0] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + 
(1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2
(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))
[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)) + (2.9(
u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] 
- 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2)
 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[
10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(
t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (1
.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t)
)[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11
])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1
.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u
(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1
0] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u
(t))[11])^2))^2)))*(u(t))[10], Differential(t)((u(t))[11]) ~ ((3.3833333333
333337(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.316666666666667(u(t))[11
]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2)
 + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12]
 - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13]
 - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)
*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (1.45(u(t))[13] - 2.9(u
(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t
))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((
3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))
[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 
4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))
 + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2
(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4
(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1/
/4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u
(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11
])^2))^2)) + (5.316666666666667(u(t))[11] + 0.9666666666666667(u(t))[13] - 
3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u
(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//
12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u
(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13]
 - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^
2)) + (2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] 
- 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2
) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + 
(1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))
[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11
]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2)
 + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12]
 - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13]
 - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^
2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10]
 + (u(t))[12] - 2(u(t))[11])^2))^2)))*(u(t))[11], Differential(t)((u(t))[12
]) ~ ((5.316666666666667(u(t))[12] + 0.9666666666666667(u(t))[14] - 3.38333
33333333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13
])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((
1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(
u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[1
4] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2
(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) +
 (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(
u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2
(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1/
/4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[
14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13
]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((
u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((
(u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[1
0] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[
14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2)
)^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[1
1] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 
1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) +
 (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 
+ (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[1
2] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[
12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(
u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[
11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (3.383
3333333333337(u(t))[11] - 0.9666666666666667(u(t))[10] - 5.316666666666667(
u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13/
/12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13
//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + 
(u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] +
 (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))
[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^
2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[
11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2)
)^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2
) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-
6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))
[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (
u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*
(u(t))[12]  …  Differential(t)((u(t))[22]) ~ ((5.8(u(t))[21] + 14.5(u(t))[2
2] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] 
- 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2
) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t
))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t
))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] 
- 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (1
3//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (1.45(u(t))[24] -
 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] 
+ (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t
))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (1
3//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] 
+ (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t)
)[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])
^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(
t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])
^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])
^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + 
(1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20]
 + (u(t))[22] - 2(u(t))[21])^2))^2)) + (3.3833333333333337(u(t))[21] - 0.96
66666666666667(u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[2
0] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21
] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^
2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) +
 (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4
)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u
(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t
))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21
])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(
t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(
t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(
t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (0.9666666666666667(u(t))[24]
 + 5.316666666666667(u(t))[22] - 3.3833333333333337(u(t))[23]) / ((0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((
u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22
])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23
])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 
+ (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[2
2] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], Differential(t)((u(t))[
23]) ~ ((1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-
6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[
23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2)
)^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2)
 + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1/
/4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + 
(u(t))[25] - 2(u(t))[24])^2))^2)) + (5.316666666666667(u(t))[23] + 0.966666
6666666667(u(t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] -
 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (1
3//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t)
)[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] - 1.45(u(t))
[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*
(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)
*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t)
)[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t)
)[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])
^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + 
(1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (3.3833333333333
337(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.316666666666667(u(t))[23])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(
t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21]
 - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25]
 - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4
)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (2.9(u(t))[22] - 14.5
(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t
))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1
 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)
*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(
t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])
^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.8(u(t)
)[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])
^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t
))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] -
 (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))
)*(u(t))[23], Differential(t)((u(t))[24]) ~ ((3.3833333333333337(u(t))[23] 
- 0.9666666666666667(u(t))[22] - 5.316666666666667(u(t))[24]) / ((0.6 / ((1
.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t
))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(
t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23
])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24
] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.3
16666666666667(u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6
 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[
24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4
(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) 
+ (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (
u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u
(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))
[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((
3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[
24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2
) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[2
3] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))
[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4
(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[
23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u
(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + 
(1.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//
4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u
(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(
u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0
.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//
4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*((
(u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[2
6] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]
) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u
(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26
] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[2
4] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))
^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23
] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t))[24], Differential(t)((u(t))[2
5]) ~ ((5.316666666666667(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.3833
333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[
23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^
2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[
26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 
2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) 
+ (7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1
//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] +
 (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] 
+ (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t)
)[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13
//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((
3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))
[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[
26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^
2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))
[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^
2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (
1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.38333333333333
37(u(t))[24] - 0.9666666666666667(u(t))[23] - 5.316666666666667(u(t))[25]) 
/ ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + 
(13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] 
- 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27]
 - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12
)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[24] - 5.8(u
(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t
))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)
*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12
)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t
))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^
2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) + (5.8(u(t))
[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] -
 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] 
- 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t)
)[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - 
(u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))
*(u(t))[25], Differential(t)((u(t))[26]) ~ ((3.3833333333333337(u(t))[25] -
 0.9666666666666667(u(t))[24] - 5.316666666666667(u(t))[26]) / ((0.1 / ((1.
0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(
t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u
(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28]
 - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])
^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26]
 + (u(t))[24] - 4(u(t))[25])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.
25(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u
(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4
)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(
t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27
])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.8(u(t
))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24]
 - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28
] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(
t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] 
- (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)
) + (2.9(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26]
 + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26
] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(
t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (
13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12
)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t
))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))
[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25]
)^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(
t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t
))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])
^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t)
)[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.316666666666667(u(t))[26] + 
0.9666666666666667(u(t))[28] - 3.3833333333333337(u(t))[27]) / ((0.3 / ((1.
0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(
t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28]
 - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])
^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26]
 + (u(t))[28] - 4(u(t))[27])^2))^2)))*(u(t))[26], Differential(t)((u(t))[27
]) ~ ((7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[2
5] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26
] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) 
+ (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4
)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u
(t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t
))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26
])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(
t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u
(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(
t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (3.3833333333333337(u(t))[26]
 - 0.9666666666666667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((0.3 / ((
1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(
u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[2
7] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28
])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 
+ (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[2
5] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 1
4.5(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(
u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//
12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u
(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12
)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))[29] - 2.9(
u(t))[27] - 7.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u
(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28
])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26
])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(
t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29
] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^
2)) + (0.9666666666666667(u(t))[29] + 5.316666666666667(u(t))[27] - 3.38333
33333333337(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[2
5] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((
u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[2
9] - 4(u(t))[28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2
(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)))*
(u(t))[27], Differential(t)((u(t))[28]) ~ ((3.3833333333333337(u(t))[27] - 
0.9666666666666667(u(t))[26] - 5.316666666666667(u(t))[28]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))
[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))
[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^
2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^
2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] 
+ (u(t))[28] - 2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9
(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t)
)[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] +
 (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] +
 (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t)
)[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(
((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (2.9(u(t))[28] + 7.25(u(t
))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))
[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(
((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))
[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 
4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))
 + (1.45(u(t))[30] - 2.9(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 
2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 
4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (1
3//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t)
)[30] - 2(u(t))[29])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))[
28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(
((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))
[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))
[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))
[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (0.9666666666666667(u(t))[30] + 
5.316666666666667(u(t))[28] - 3.3833333333333337(u(t))[29]) / ((0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t
))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^
2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^
2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (
1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] 
+ (u(t))[30] - 2(u(t))[29])^2))^2)))*(u(t))[28], Differential(t)((u(t))[29]
) ~ ((0.9666666666666667(u(t))[31] + 5.316666666666667(u(t))[29] - 3.383333
3333333337(u(t))[30]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30]
)^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1
.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u
(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((
u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31
] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(
u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2)) + 
(3.3833333333333337(u(t))[28] - 0.9666666666666667(u(t))[27] - 5.3166666666
66667(u(t))[29]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 
2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[
28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4
(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))
[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (2.9(
u(t))[28] - 14.5(u(t))[29] - 5.8(u(t))[30]) / ((0.1 / ((1.0e-6 + (13//12)*(
((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[
27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[3
0])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / (
(1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3
(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2
8] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))
^2)) + (5.8(u(t))[28] + 14.5(u(t))[29] - 2.9(u(t))[30]) / ((0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30]
 - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29
] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) 
+ (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (1//4
)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(
t))[29])^2))^2)) + (2.9(u(t))[29] + 7.25(u(t))[28] - 1.45(u(t))[27]) / ((0.
6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28]
 + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27
] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(
t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u
(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u
(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (1.45(u(t))[31] - 2.9(u(t))[
29] - 7.25(u(t))[30]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[2
9] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u
(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31
] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(
u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2)))*(
u(t))[29], 0 ~ 0.2(u(t))[1] + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - (u(
t))[2] - 2.0(u(t))[4], 0 ~ 2.0(u(t))[29] + 0.2(u(t))[31] + (u(t))[27] - 0.2
(u(t))[26] - (u(t))[30] - 2.0(u(t))[28]], t, SymbolicUtils.Term{Real, Nothi
ng}[(u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u(t)
)[9], (u(t))[10], (u(t))[11], (u(t))[12]  …  (u(t))[22], (u(t))[23], (u(t))
[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))[2]
, (u(t))[31]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symbolics.Equation
[(u(t))[30] ~ -0.034482758620689655 / (1 + t) + (u(t))[31], (u(t))[1] ~ -0.
034482758620689655 / (1 + t) + (u(t))[2]], Base.RefValue{Vector{Symbolics.N
um}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0
)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{M
atrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.RefValue{Ma
trix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesys2, Modelin
gToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.5344827586206896, (u(t
))[18] => 0.5689655172413793, (u(t))[8] => 0.22413793103448276, (u(t))[10] 
=> 0.29310344827586204, (u(t))[27] => 0.8793103448275862, (u(t))[28] => 0.9
137931034482759, (u(t))[2] => 0.017241379310344827, (u(t))[24] => 0.7758620
689655172, (u(t))[30] => 0.9827586206896551, (u(t))[21] => 0.67241379310344
83…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinuousCallback
[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[], Symbolics
.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], MethodOfLines.MO
LMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodOfLines.Edge
AlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGr
id, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDESystem, Bas
e.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodOfLines.Disc
reteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}(MethodOfLines.VariableMap(An
y[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}[x], 
t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Tuple{F
loat64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{SymbolicUtils.Sy
m{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUtils.Sym{Rea
l, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUtils.Sym{Sym
bolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.Sym{Real, B
ase.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, SymbolicUtil
s.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{SymbolicUtil
s.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbolics.Num}}(u(t
, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], 
(u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[22], (u(t))[23], (u(
t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29], (u(t))
[30], (u(t))[31]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataTyp
e, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, Base.TwicePre
cision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dict{SymbolicU
tils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{Float64, Ba
se.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}}(x => -0.0
17241379310344827:0.034482758620689655:1.0172413793103448), Dict{SymbolicUt
ils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Float64}(x => 0.034482758
620689655), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}
}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndic
es((30,))), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}
}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => CartesianIndic
es((31,)))), MethodOfLines.MOLFiniteDifference{MethodOfLines.EdgeAlignedGri
d, MethodOfLines.ScalarizedDiscretization}(Dict{Symbolics.Num, Int64}(x => 
29), t, 2, MethodOfLines.WENOScheme(1.0e-6), MethodOfLines.EdgeAlignedGrid(
), true, false, MethodOfLines.ScalarizedDiscretization(), Base.Pairs{Symbol
, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit.PDESystem(
Symbolics.Equation[Differential(x)(u(t, x))*u(t, x) + Differential(t)(u(t, 
x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, Differential(x)(u(t, 0.0)) ~ 1 / 
(1 + t), Differential(x)(u(t, 1.0)) ~ 1 / (1 + t)], Symbolics.VarDomainPair
ing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolics.VarDomainPairing(x,
 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLBase.NullPar
ameters(), Dict{Any, Any}(), nothing, Any[], :pdesys2, nothing), false, Bas
e.RefValue{Any}(nothing)), ModelingToolkit.SystemStructures.TearingState{Mo
delingToolkit.ODESystem}(ModelingToolkit.ODESystem(Symbolics.Equation[Diffe
rential(t)((u(t))[3]) ~ ((3.3833333333333337(u(t))[2] - 0.9666666666666667(
u(t))[1] - 5.316666666666667(u(t))[3]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t
))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(
t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13/
/12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[
5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(
t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2)) + (5.8(u
(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(
t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u
(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13
//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4
)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))
[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (
13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)) + (1.45(u(t))[5] - 2.
9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(
t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t
))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t)
)[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[3] + 7
.25(u(t))[2] - 1.45(u(t))[1]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (
u(t))[3] - 2(u(t))[2])^2) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u
(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(
t))[4])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2
) + (1//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2)) + (5.316666666666
667(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.3833333333333337(u(t))[4]) /
 ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1/
/4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3
])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[2] - 14.5(u(t))[3] - 5.8(u(t))[4]) 
/ ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[1] + (u(t))[3] - 2(u(t))[2])^2) + (1
//4)*((3(u(t))[3] + (u(t))[1] - 4(u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[
3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])
^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1/
/4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t)
)[3])^2))^2)))*(u(t))[3], Differential(t)((u(t))[4]) ~ ((7.25(u(t))[3] + 2.
9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(
t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t
))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t)
)[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) 
+ (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (5.8(u(t))[3] + 1
4.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u
(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(
t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t
))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((
u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (3.3833333333333337(u(t))[3] -
 0.9666666666666667(u(t))[2] - 5.316666666666667(u(t))[4]) / ((0.1 / ((1.0e
-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4
] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - 
(u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2
] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[
3])^2))^2)) + (0.9666666666666667(u(t))[6] + 5.316666666666667(u(t))[4] - 3
.3833333333333337(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(
t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t
))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t)
)[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) +
 (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (2.9(u(t))[3] - 5
.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u
(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(
t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t
))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((
u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] 
- 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(
u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(
t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))
[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)))*(u(t))[4], Differential(t)((u
(t))[5]) ~ ((0.9666666666666667(u(t))[7] + 5.316666666666667(u(t))[5] - 3.3
833333333333337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[
6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))
[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[
6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + 
(1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (3.3833333333333337
(u(t))[4] - 0.9666666666666667(u(t))[3] - 5.316666666666667(u(t))[5]) / ((0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)
*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2
))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) 
+ (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5]
 - 2(u(t))[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / ((
0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] 
+ (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (
u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^
2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2)
 + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5]
)^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3]) / ((0.6 / ((1.0e
-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] 
- 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4
(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1
 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((
3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5]
 + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[
4])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0.1 / ((1.
0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))
[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] 
- (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*
((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))
[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t)
)[6])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]) / ((0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t)
)[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4]
 - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 
0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)
*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[
4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))
)*(u(t))[5], Differential(t)((u(t))[6]) ~ ((3.3833333333333337(u(t))[5] - 0
.9666666666666667(u(t))[4] - 5.316666666666667(u(t))[6]) / ((0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] 
+ (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u
(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 /
 ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((
u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] +
 (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5]
)^2))^2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4]
 + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (
u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*((
(u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] -
 (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)) + (
1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6]
 - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2)
 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + 
(u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] 
- 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) +
 (5.316666666666667(u(t))[6] + 0.9666666666666667(u(t))[8] - 3.383333333333
3337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (1
3//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t)
)[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8
] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))
*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((
u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[6] + 7.25(u(t))[5] 
- 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + 
(13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1
//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(
t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))
[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2
))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(
((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6
] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) +
 (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u
(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t)
)[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^
2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + 
(u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], Differential(t)((u(t))[7]) ~ ((
3.3833333333333337(u(t))[6] - 0.9666666666666667(u(t))[5] - 5.3166666666666
67(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13/
/12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)
*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[
9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7]
 - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*(
(1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(
t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (0.9666666666666667(u(t))[9] + 5
.316666666666667(u(t))[7] - 3.3833333333333337(u(t))[8]) / ((0.6 / ((1.0e-6
 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 
2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(
u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((
u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] +
 (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8]
)^2))^2)) + (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e
-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] 
- 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 
2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(
((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5
] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[
6])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.6 / ((1.0
e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8]
 - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 
4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.
1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*(
(3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6]
 - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) +
 (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^
2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])
^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[
9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] 
- (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0
.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)
*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] -
 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8
])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))[7], 
Differential(t)((u(t))[8]) ~ ((3.3833333333333337(u(t))[7] - 0.966666666666
6667(u(t))[6] - 5.316666666666667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(
((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10]
 - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 
4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.
6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + 
(u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] 
- 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) +
 (7.25(u(t))[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))
[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9]
)^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6
] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))
[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2
)) + (0.9666666666666667(u(t))[10] + 5.316666666666667(u(t))[8] - 3.3833333
333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] 
- 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] 
+ (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (
u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^
2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1/
/4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (1.45(u(t))[10] - 2.9
(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t
))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2)
)^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + 
(13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t
))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2
) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (2.9(u(t))[7] 
- 5.8(u(t))[9] - 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] +
 (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9
])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^
2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12
)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t)
)[8] - 2.9(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10]
 - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7]
 + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + 
(u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])
^2))^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[
7] + (u(t))[9] - 2(u(t))[8])^2))^2)))*(u(t))[8], Differential(t)((u(t))[9])
 ~ ((5.316666666666667(u(t))[9] + 0.9666666666666667(u(t))[11] - 3.38333333
33333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 
4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.
1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)
*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) 
+ (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (1.45(u(t))[11]
 - 2.9(u(t))[9] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9]
 + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t)
)[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[
8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[
10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(
u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (
3.3833333333333337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.3166666666666
67(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t
))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 /
 ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((
u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))
^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)
*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))
[9] - 5.8(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11]
 - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))
[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u
(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[9] + 7.25(u(t))[8] 
- 1.45(u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u
(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 /
 ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((
3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((
u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u
(t))[9] - 2.9(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[
7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (
1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u
(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*
(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)))*(u(t))[9], Differential(t)(
(u(t))[10]) ~ ((7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(t))[8]) / ((0.3 / ((
1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(
t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] -
 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2)
 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(
t))[8] - 4(u(t))[9])^2))^2)) + (5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[1
1]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2)
 + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10
] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] 
- (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))
*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u
(t))[11] - 2(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[9] - 0.96666666
66666667(u(t))[8] - 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//
12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t
))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[1
1])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((
1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(
u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[
8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t
))[9])^2))^2)) + (0.9666666666666667(u(t))[12] + 5.316666666666667(u(t))[10
] - 3.3833333333333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8]
 + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))
[9])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))
[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(
t))[11] - 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12
] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^
2)) + (2.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] +
 (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(
t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)
*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2
))^2)) + (1.45(u(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e
-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[
10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] 
- (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (
1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t)
)[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Differential(t)((u(t))[11]) ~ ((3
.3833333333333337(u(t))[10] - 0.9666666666666667(u(t))[9] - 5.3166666666666
67(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(
t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] +
 (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t)
)[12])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^
2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (1.45(u(t))[
13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t)
)[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(
u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) +
 (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[1
1] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u
(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[1
2])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((
1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(
t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10
])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + 
(1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] -
 2(u(t))[11])^2))^2)) + (5.316666666666667(u(t))[11] + 0.9666666666666667(u
(t))[13] - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t
))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])
^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])
^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t
))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] +
 (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t)
)[12])^2))^2)) + (2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + 
(u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))
[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))
[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[1
1] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[12] - 14
.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(
t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] +
 (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t)
)[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)))*(u(t))[11], Differential(t
)((u(t))[12]) ~ ((5.316666666666667(u(t))[12] + 0.9666666666666667(u(t))[14
] - 3.3833333333333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] 
- (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)
 + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + 
(1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12]
 + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(
t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13]
)^2))^2)) + (1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / ((1
.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t
))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13
])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12
] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] - 2
.9(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (
13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12]
 + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12
] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(
t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)
*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (2.9(u(t))[12] + 7.25(u
(t))[11] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t)
)[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*
((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12
)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t
))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12]
 - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2
)) + (3.3833333333333337(u(t))[11] - 0.9666666666666667(u(t))[10] - 5.31666
6666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13]
)^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u
(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14
] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(
u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + 
(2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(
t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u
(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4
)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12]
)^2))^2)))*(u(t))[12]  …  Differential(t)((u(t))[22]) ~ ((5.8(u(t))[21] + 1
4.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + 
(u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))
[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13/
/12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + 
(u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[2
3])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (1.45(
u(t))[24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3
(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[
22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[2
3])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / (
(1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*((
(u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[
22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2
(u(t))[23])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / (
(0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13
//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2
(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4
(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(
((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (3.3833333333333337(u(t))
[21] - 0.9666666666666667(u(t))[20] - 5.316666666666667(u(t))[22]) / ((0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)
*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t)
)[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t)
)[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0
e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t
))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23]
 - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] -
 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t)
)[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] -
 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13
//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2)) + (0.966666666666666
7(u(t))[24] + 5.316666666666667(u(t))[22] - 3.3833333333333337(u(t))[23]) /
 ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (
13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] -
 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] -
 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)
)*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)
*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[22], Differential
(t)((u(t))[23]) ~ ((1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.
6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22]
 + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21
] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(
t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(
t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1
.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u
(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.316666666666667(u(t))[23]
 + 0.9666666666666667(u(t))[25] - 3.3833333333333337(u(t))[24]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u
(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (
u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[2
2])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[2
4])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[
23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t))[22] -
 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) 
+ (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[
23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[
23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2
(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))
[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (3.38
33333333333337(u(t))[22] - 0.9666666666666667(u(t))[21] - 5.316666666666667
(u(t))[23]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13
//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] +
 (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] +
 (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t)
)[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])
^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (2.9(u(t))
[22] - 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))
[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^
2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t)
)[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - 
(u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) 
+ (5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(
u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2
(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13/
/12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((
u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[2
3])^2))^2)))*(u(t))[23], Differential(t)((u(t))[24]) ~ ((3.3833333333333337
(u(t))[23] - 0.9666666666666667(u(t))[22] - 5.316666666666667(u(t))[24]) / 
((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))
[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t)
)[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 
4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] -
 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))
*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*(
(3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (0.9666666666666667(u(t)
)[26] + 5.316666666666667(u(t))[24] - 3.3833333333333337(u(t))[25]) / ((0.1
 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)
*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(
t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t
))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.
0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(
t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[2
4] - 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26
] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) 
+ (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25]
 - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u
(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (
5.8(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(
t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u
(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12
)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])
^2))^2)) + (1.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t)
)[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t
))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])
^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23]
)^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + 
(13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24]
 + (u(t))[26] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.
8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (1
3//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] 
+ (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22]
 + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t
))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*
(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t))[24], Differential(
t)((u(t))[25]) ~ ((5.316666666666667(u(t))[25] + 0.9666666666666667(u(t))[2
7] - 3.3833333333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25
] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u
(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(
u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24
] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u
(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26
])^2))^2)) + (7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((
1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((
u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((
(u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[2
7] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26
])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 
+ (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[2
3] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (1.45(u(t))[27] - 2.9(u(t))[25] - 
7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(
u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[2
4] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(
u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[
26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (3.383
3333333333337(u(t))[24] - 0.9666666666666667(u(t))[23] - 5.316666666666667(
u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))
[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + 
(u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] +
 (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))
[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2
) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[
24] - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 
2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2)
 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-
6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))
[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (
u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)) +
 (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (
u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + 
(u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[
26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//
12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*(((u
(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25
])^2))^2)))*(u(t))[25], Differential(t)((u(t))[26]) ~ ((3.3833333333333337(
u(t))[25] - 0.9666666666666667(u(t))[24] - 5.316666666666667(u(t))[26]) / (
(0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1
//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] +
 (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - 
(u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((
3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t
))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t)
)[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^
2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])
^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0
e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))
[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] -
 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2))
 + (5.8(u(t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] +
 (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] 
+ (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t)
)[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13
//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[
26])^2))^2)) + (2.9(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / 
((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((
3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))
[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[
27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-
6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))
[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.5(u(t))[26] 
- 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 
2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) +
 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1
//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2
(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//
12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.316666666666667(u
(t))[26] + 0.9666666666666667(u(t))[28] - 3.3833333333333337(u(t))[27]) / (
(0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1
//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] +
 (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - 
(u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*
((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((
3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)))*(u(t))[26], Differential(t
)((u(t))[27]) ~ ((7.25(u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)
*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t)
)[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t
))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0
e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t
))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27
] - 2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] -
 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t)
)[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] -
 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13
//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (3.383333333333333
7(u(t))[26] - 0.9666666666666667(u(t))[25] - 5.316666666666667(u(t))[27]) /
 ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + 
(1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + 
(1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25]
 + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] 
- (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)
)*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)
*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (2.9(u(t))[26] - 5.8(u(
t))[28] - 14.5(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t
))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])
^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])
^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t)
)[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2
) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (1.45(u(t))
[29] - 2.9(u(t))[27] - 7.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t
))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] -
 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] -
 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)
 + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t)
)[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] 
+ (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t)
)[28])^2))^2)) + (0.9666666666666667(u(t))[29] + 5.316666666666667(u(t))[27
] - 3.3833333333333337(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27]
 + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(
t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (
13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27]
 + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(
t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28]
)^2))^2)))*(u(t))[27], Differential(t)((u(t))[28]) ~ ((3.3833333333333337(u
(t))[27] - 0.9666666666666667(u(t))[26] - 5.316666666666667(u(t))[28]) / ((
0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[2
7] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[2
8] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(
u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(
u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*((
(u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t)
)[28] - 2.9(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[2
6] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((
u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[3
0] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) +
 (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (2.9(u(t))[28]
 + 7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[2
8] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(
u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) +
 (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[2
8] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u
(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[2
7])^2))^2)) + (1.45(u(t))[30] - 2.9(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u
(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u
(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[2
7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[2
9])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*((1.0e-6
 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[
28] + (u(t))[30] - 2(u(t))[29])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 
14.5(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) +
 (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[2
6] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[2
8] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(
u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//1
2)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2)) + (0.9666666666666667(u
(t))[30] + 5.316666666666667(u(t))[28] - 3.3833333333333337(u(t))[29]) / ((
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(
u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(
u(t))[29])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2))*(
(1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[30] - 4(u(t))[29])^2) + (13//12)*((
(u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2)))*(u(t))[28], Differential(t)
((u(t))[29]) ~ ((0.9666666666666667(u(t))[31] + 5.316666666666667(u(t))[29]
 - 3.3833333333333337(u(t))[30]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] -
 (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (
1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] 
+ (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[29] + (u(t
))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])
^2))^2)) + (3.3833333333333337(u(t))[28] - 0.9666666666666667(u(t))[27] - 5
.316666666666667(u(t))[29]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u
(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12
)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(
t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29
] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^
2)) + (2.9(u(t))[28] - 14.5(u(t))[29] - 5.8(u(t))[30]) / ((0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29
] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[28]
 - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2
) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) +
 (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (1//4)
*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))[30] - 2(u(t
))[29])^2))^2)) + (5.8(u(t))[28] + 14.5(u(t))[29] - 2.9(u(t))[30]) / ((0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] +
 (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] 
+ (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t)
)[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t
))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(((u(t))[28] + (u(t))
[30] - 2(u(t))[29])^2))^2)) + (2.9(u(t))[29] + 7.25(u(t))[28] - 1.45(u(t))[
27]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (13//12)*(
((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))
[27] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[29] + (u(t)
)[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])^
2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (
1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (1.45(u(t))[31] -
 2.9(u(t))[29] - 7.25(u(t))[30]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[27]
 + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t
))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[28] - (u(t))[30])^2) + (1
3//12)*(((u(t))[28] + (u(t))[30] - 2(u(t))[29])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[29] + (u(t))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] 
+ (u(t))[31] - 4(u(t))[30])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[29] + (u(t
))[31] - 2(u(t))[30])^2) + (1//4)*((3(u(t))[29] + (u(t))[31] - 4(u(t))[30])
^2))^2)))*(u(t))[29], 0 ~ 0.2(u(t))[1] + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t
))[6] - (u(t))[2] - 2.0(u(t))[4], 0 ~ 2.0(u(t))[29] + 0.2(u(t))[31] + (u(t)
)[27] - 0.2(u(t))[26] - (u(t))[30] - 2.0(u(t))[28]], t, SymbolicUtils.Term{
Real, Nothing}[(u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t)
)[8], (u(t))[9], (u(t))[10], (u(t))[11], (u(t))[12]  …  (u(t))[22], (u(t))[
23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[29]
, (u(t))[2], (u(t))[31]], Any[], Dict{Any, Any}(:u => u(t)), Any[], Symboli
cs.Equation[(u(t))[30] ~ -0.034482758620689655 / (1 + t) + (u(t))[31], (u(t
))[1] ~ -0.034482758620689655 / (1 + t) + (u(t))[2]], Base.RefValue{Vector{
Symbolics.Num}}(Symbolics.Num[]), Base.RefValue{Any}(Matrix{Symbolics.Num}(
undef, 0, 0)), Base.RefValue{Any}(Matrix{Symbolics.Num}(undef, 0, 0)), Base
.RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), Base.
RefValue{Matrix{Symbolics.Num}}(Matrix{Symbolics.Num}(undef, 0, 0)), :pdesy
s2, ModelingToolkit.ODESystem[], Dict{Any, Any}((u(t))[17] => 0.53448275862
06896, (u(t))[18] => 0.5689655172413793, (u(t))[8] => 0.22413793103448276, 
(u(t))[10] => 0.29310344827586204, (u(t))[27] => 0.8793103448275862, (u(t))
[28] => 0.9137931034482759, (u(t))[2] => 0.017241379310344827, (u(t))[24] =
> 0.7758620689655172, (u(t))[30] => 0.9827586206896551, (u(t))[21] => 0.672
4137931034483…), nothing, nothing, nothing, ModelingToolkit.SymbolicContinu
ousCallback[ModelingToolkit.SymbolicContinuousCallback(Symbolics.Equation[]
, Symbolics.Equation[])], ModelingToolkit.SymbolicDiscreteCallback[], Metho
dOfLines.MOLMetadata{Val{true}(), MethodOfLines.DiscreteSpace{1, 1, MethodO
fLines.EdgeAlignedGrid}, MethodOfLines.MOLFiniteDifference{MethodOfLines.Ed
geAlignedGrid, MethodOfLines.ScalarizedDiscretization}, ModelingToolkit.PDE
System, Base.RefValue{Any}, MethodOfLines.ScalarizedDiscretization}(MethodO
fLines.DiscreteSpace{1, 1, MethodOfLines.EdgeAlignedGrid}(MethodOfLines.Var
iableMap(Any[u(t, x)], SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType,
 Any}}[x], t, Dict{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any
}}, Tuple{Float64, Float64}}(x => (0.0, 1.0), t => (0.0, 20.0)), Dict{Symbo
licUtils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}, Vector{SymbolicUt
ils.Sym{Real, Base.ImmutableDict{DataType, Any}}}}(u => [t, x]), SymbolicUt
ils.Sym{SymbolicUtils.FnType{Tuple, Real}, Nothing}[u], Dict{SymbolicUtils.
Sym{Real, Base.ImmutableDict{DataType, Any}}, Int64}(x => 1), Dict{Int64, S
ymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}}(1 => x)), Dict{S
ymbolicUtils.Term{Real, Base.ImmutableDict{DataType, Any}}, Vector{Symbolic
s.Num}}(u(t, x) => [(u(t))[1], (u(t))[2], (u(t))[3], (u(t))[4], (u(t))[5], 
(u(t))[6], (u(t))[7], (u(t))[8], (u(t))[9], (u(t))[10]  …  (u(t))[22], (u(t
))[23], (u(t))[24], (u(t))[25], (u(t))[26], (u(t))[27], (u(t))[28], (u(t))[
29], (u(t))[30], (u(t))[31]]), Dict{SymbolicUtils.Sym{Real, Base.ImmutableD
ict{DataType, Any}}, StepRangeLen{Float64, Base.TwicePrecision{Float64}, Ba
se.TwicePrecision{Float64}, Int64}}(x => 0.0:0.034482758620689655:1.0), Dic
t{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, StepRangeLen{
Float64, Base.TwicePrecision{Float64}, Base.TwicePrecision{Float64}, Int64}
}(x => -0.017241379310344827:0.034482758620689655:1.0172413793103448), Dict
{SymbolicUtils.Sym{Real, Base.ImmutableDict{DataType, Any}}, Float64}(x => 
0.034482758620689655), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{Dat
aType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => Car
tesianIndices((30,))), Dict{SymbolicUtils.Term{Real, Base.ImmutableDict{Dat
aType, Any}}, CartesianIndices{1, Tuple{Base.OneTo{Int64}}}}(u(t, x) => Car
tesianIndices((31,)))), MethodOfLines.MOLFiniteDifference{MethodOfLines.Edg
eAlignedGrid, MethodOfLines.ScalarizedDiscretization}(Dict{Symbolics.Num, I
nt64}(x => 29), t, 2, MethodOfLines.WENOScheme(1.0e-6), MethodOfLines.EdgeA
lignedGrid(), true, false, MethodOfLines.ScalarizedDiscretization(), Base.P
airs{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}()), ModelingToolkit
.PDESystem(Symbolics.Equation[Differential(x)(u(t, x))*u(t, x) + Differenti
al(t)(u(t, x)) ~ 0], Symbolics.Equation[u(0, x) ~ x, Differential(x)(u(t, 0
.0)) ~ 1 / (1 + t), Differential(x)(u(t, 1.0)) ~ 1 / (1 + t)], Symbolics.Va
rDomainPairing[Symbolics.VarDomainPairing(t, 0.0..20.0), Symbolics.VarDomai
nPairing(x, 0.0..1.0)], Symbolics.Num[t, x], Symbolics.Num[u(t, x)], SciMLB
ase.NullParameters(), Dict{Any, Any}(), nothing, Any[], :pdesys2, nothing),
 false, Base.RefValue{Any}(nothing)), nothing, ModelingToolkit.Substitution
s(Symbolics.Equation[(u(t))[30] ~ -0.034482758620689655 / (1 + t) + (u(t))[
31], (u(t))[1] ~ -0.034482758620689655 / (1 + t) + (u(t))[2]], [Int64[], In
t64[]], Symbolics.Equation[Differential(t)((u(t))[3]) ~ ((0.049999999999999
996 / (1 + t) + 2.9(u(t))[3] + 5.8(u(t))[2]) / ((0.3 / ((1.0e-6 + (1//4)*((
-0.034482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*
((-0.034482758620689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t)
)[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5
] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))
*((1.0e-6 + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t
))[2])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[3] - (u(t))
[2])^2))^2)) + (0.03333333333333333 / (1 + t) + 2.416666666666667(u(t))[2] 
- 5.316666666666667(u(t))[3]) / ((0.1 / ((1.0e-6 + (1//4)*((-0.034482758620
689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.0344827586
20689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[
3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])
^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1/
/4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13
//12)*((-0.034482758620689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2)) + 
(2.9(u(t))[2] - 14.5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (1//4)*(
(-0.034482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)
*((-0.034482758620689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t
))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[
5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u
(t))[4] - 2(u(t))[3])^2))^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[
4]) / ((0.1 / ((1.0e-6 + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))
[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t)
)[3] - (u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])
^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-
6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3]
 + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[
5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)
) + (5.316666666666667(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.383333333
3333337(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//4)*((-0.034482758620689655 / (1 
+ t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.034482758620689655 / (
1 + t) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//1
2)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(
t))[4])^2))^2)) + (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / (
(1.0e-6 + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))
[2])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[3] - (u(t))[2
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*
(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 
2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12
)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2)))*(u(t))[3], Differential(t)
((u(t))[4]) ~ ((3.3833333333333337(u(t))[3] - 0.9666666666666667(u(t))[2] -
 5.316666666666667(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u
(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2)
)^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(
t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))
[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t
))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2)
 + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (2.9(u(t))[3] - 
5.8(u(t))[5] - 14.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (
u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u
(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t)
)[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (0.9666666666666667(u(t))[6] 
+ 5.316666666666667(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0
e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[
4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] -
 (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4
] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))
[5])^2))^2)) + (1.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1
.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t)
)[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3]
 - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12
)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t
))[5])^2))^2)) + (5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((
1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t
))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3
] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) +
 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//1
2)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)
) + (7.25(u(t))[3] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + (13
//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t
))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5
])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[
4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t
))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^
2)))*(u(t))[4], Differential(t)((u(t))[5]) ~ ((3.3833333333333337(u(t))[4] 
- 0.9666666666666667(u(t))[3] - 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0
e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[
3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] -
 (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*(
(3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5
] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))
[4])^2))^2)) + (5.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.
0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6
] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] -
 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0
.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*
((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4
] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) 
+ (0.9666666666666667(u(t))[7] + 5.316666666666667(u(t))[5] - 3.38333333333
33337(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (
13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t
))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))
[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3
(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4]
 - 1.45(u(t))[3]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) +
 (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u
(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*
(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6
] - 14.5(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4
(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6
 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (
u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(
t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))
^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] +
 (u(t))[6] - 2(u(t))[5])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t
))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2
(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u
(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-
6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5]
 + (u(t))[7] - 4(u(t))[6])^2))^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~
 ((2.9(u(t))[6] + 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])
^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6]
 + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[
4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)
) + (3.3833333333333337(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.31666666
6666667(u(t))[6]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(
u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u
(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t)
)[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^
2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*
(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (5.316666666666667(u(t))[6]
 + 0.9666666666666667(u(t))[8] - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1
.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[
7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] 
- 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 
0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12
)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t
))[7])^2))^2)) + (1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / (
(1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(
t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[
5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//
12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t
))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u
(t))[7])^2))^2)) + (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t
))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[
4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13/
/12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t
))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^
2)) + (2.9(u(t))[5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(
t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[
7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.
0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))
[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t)
)[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6
], Differential(t)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.966666666
6666667(u(t))[5] - 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*
(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7]
)^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2
) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] +
 (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7
] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) 
+ (7.25(u(t))[6] + 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[
7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6]
)^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-
6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7]
 + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))
[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)
) + (5.8(u(t))[6] + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//
4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))
[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6
])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[
8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t
))[9] - 2.9(u(t))[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12
)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5
] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t)
)[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666
666666666667(u(t))[9] + 5.316666666666667(u(t))[7] - 3.3833333333333337(u(t
))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(
((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((
u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4
(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(
t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-
6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7]
 + (u(t))[9] - 2(u(t))[8])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(
t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*
(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(
u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e
-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] 
- 2(u(t))[7])^2))^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ ((7.25(u(t))
[7] + 2.9(u(t))[8] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[
8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t
))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*
((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8
] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t)
)[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u
(t))[10] - 2.9(u(t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u
(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 
4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u
(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(
t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] -
 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + 
(3.3833333333333337(u(t))[7] - 0.9666666666666667(u(t))[6] - 5.316666666666
667(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(
t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u
(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)
)*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*((
(u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] 
- 14.5(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2
(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1
 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(
((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))
^2))*((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t)
)[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u
(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e
-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] 
- 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(t))[10] + 5.316666666666667(u
(t))[8] - 3.3833333333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t
))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(
u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (1
3//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//
4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t)
)[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2
(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)))*(u(
t))[8], Differential(t)((u(t))[9]) ~ ((2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(
u(t))[7]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8]
)^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e
-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))
[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8
] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2)
)*((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*((
(u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9
] - 7.25(u(t))[10]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] 
- 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//
12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) 
+ (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (3.383333333333
3337(u(t))[8] - 0.9666666666666667(u(t))[7] - 5.316666666666667(u(t))[9]) /
 ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (
1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(
t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[
10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 
+ (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t)
)[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2
) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9]
 + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] -
 (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*(
(1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t
))[10] - 2(u(t))[9])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10
]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2)
 + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(
t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[1
0] - 2(u(t))[9])^2))^2)) + (5.316666666666667(u(t))[9] + 0.9666666666666667
(u(t))[11] - 3.3833333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 
2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2
(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] 
+ (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))
[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2)
)^2)))*(u(t))[9], Differential(t)((u(t))[10]) ~ ((5.8(u(t))[9] + 14.5(u(t))
[10] - 2.9(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10
] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) 
+ 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (
1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(
u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12
)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (7.25(u(t))[9] + 2.9(u(
t))[10] - 1.45(u(t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))
[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) 
+ (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] -
 2(u(t))[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t)
)[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (1.45(u
(t))[12] - 2.9(u(t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*((
(u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] 
- 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2)
 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[
10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + 
(u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[
11])^2))^2)) + (3.3833333333333337(u(t))[9] - 0.9666666666666667(u(t))[8] -
 5.316666666666667(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (
u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(
((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[
12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2
(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (2
.9(u(t))[9] - 5.8(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)
*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[
8] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])
^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0
e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t
))[10] + (u(t))[12] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - 
(u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) +
 (0.9666666666666667(u(t))[12] + 5.316666666666667(u(t))[10] - 3.3833333333
333337(u(t))[11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 
2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.
1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4
)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t)
)[10])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])
^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10],
 Differential(t)((u(t))[11]) ~ ((2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t)
)[9]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*
(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t)
)[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t)
)[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1/
/4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(
u(t))[10] - 0.9666666666666667(u(t))[9] - 5.316666666666667(u(t))[11]) / ((
0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//
4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(
t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(
t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1
.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(
t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[12]
 - 14.5(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] -
 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) +
 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[
10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2
(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//
12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.8(u(t))[10] + 14.
5(u(t))[11] - 2.9(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(
t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.
1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//1
2)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//
12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(
t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^
2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (1.45(u(t)
)[13] - 2.9(u(t))[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(
t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 
4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2)
 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-
6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))
[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + 
(u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))
[12])^2))^2)) + (5.316666666666667(u(t))[11] + 0.9666666666666667(u(t))[13]
 - 3.3833333333333337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] -
 (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) 
+ 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (1
3//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] +
 (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[
13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2
))^2)))*(u(t))[11], Differential(t)((u(t))[12]) ~ ((5.316666666666667(u(t))
[12] + 0.9666666666666667(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((0.6
 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] 
+ (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10]
 + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t
))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(
t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.
0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(
t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[1
1] - 1.45(u(t))[10]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])
^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.
0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(
t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u
(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14]
 - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u
(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (
1.45(u(t))[14] - 2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4
)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(
t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u
(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.
3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4
)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((
u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14
] - 4(u(t))[13])^2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(
t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u
(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10]
 - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14
] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^
2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11]
 + (u(t))[13] - 2(u(t))[12])^2))^2)) + (3.3833333333333337(u(t))[11] - 0.96
66666666666667(u(t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13]
 - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12
] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^
2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) 
+ (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//
12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u
(t))[10] - 4(u(t))[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t
))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12
)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//1
2)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(
t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u
(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(
t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Differential(t)
((u(t))[22]) ~ ((3.3833333333333337(u(t))[21] - 0.9666666666666667(u(t))[20
] - 5.316666666666667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] 
+ (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t
))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (1
3//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (
1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] 
+ (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t)
)[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])
^2))^2)) + (5.8(u(t))[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0
e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t
))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^
2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^
2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 
2(u(t))[22])^2))^2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / (
(0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13
//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1
//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2
(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4
(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (
u(t))[23] - 2(u(t))[22])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u
(t))[20]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[
21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / 
((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (
u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (
u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[
23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2)
 + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (1.45(u(t))[
24] - 2.9(u(t))[22] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))
[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 
2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2)
 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-
6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))
[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + 
(u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))
[23])^2))^2)) + (0.9666666666666667(u(t))[24] + 5.316666666666667(u(t))[22]
 - 3.3833333333333337(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] 
+ (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t
))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (1
3//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (
1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] 
+ (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t)
)[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])
^2))^2)))*(u(t))[22], Differential(t)((u(t))[23]) ~ ((3.3833333333333337(u(
t))[22] - 0.9666666666666667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0
.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22
] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
1] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u
(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u
(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(
u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2)) + (5.8(u(t))[22] + 14.5(u(t))
[23] - 2.9(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24]
)^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1
.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u
(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25
] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + 
(13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (2.9(u(t))[22] 
- 14.5(u(t))[23] - 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] 
- (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + 
(1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23]
 + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t)
)[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.
316666666666667(u(t))[23] + 0.9666666666666667(u(t))[25] - 3.38333333333333
37(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (
13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23]
 + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23]
 + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(
t))[24])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24]
)^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t
))[23] + 7.25(u(t))[22] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(
t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22
])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1
.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u
(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2
1] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u
(t))[22])^2))^2)) + (1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0
.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22
] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
1] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u
(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u
(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((
1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((
u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)))*(u(t))[23], Differential(t)(
(u(t))[24]) ~ ((1.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (
u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + 
(u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[
25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))
[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-
6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))
[24] + (u(t))[26] - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] 
- 1.45(u(t))[22]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] -
 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) 
+ 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (
1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 
2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t)
)[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8
(u(t))[23] + 14.5(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*
(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))
[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t)
)[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(
((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[
23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2)
)^2)) + (3.3833333333333337(u(t))[23] - 0.9666666666666667(u(t))[22] - 5.31
6666666666667(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[
25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((
3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))
[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] -
 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))
 + (2.9(u(t))[23] - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1
//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2
(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 
2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1
//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[
24])^2))^2)) + (0.9666666666666667(u(t))[26] + 5.316666666666667(u(t))[24] 
- 3.3833333333333337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] 
+ (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t)
)[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t
))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 
/ ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] +
 (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t)
)[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^
2))^2)))*(u(t))[24], Differential(t)((u(t))[25]) ~ ((7.25(u(t))[24] + 2.9(u
(t))[25] - 1.45(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t
))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24]
)^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26
])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t
))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] 
- 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2
)) + (5.316666666666667(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.383333
3333333337(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23
] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))
^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2)
 + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6
 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26
] - 2(u(t))[25])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(
u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + 
(1.45(u(t))[27] - 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//
4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (
u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u
(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//
4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*((
(u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[2
7] - 4(u(t))[26])^2))^2)) + (3.3833333333333337(u(t))[24] - 0.9666666666666
667(u(t))[23] - 5.316666666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))
[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[
26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((
3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))
[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 
2(u(t))[24])^2))^2)) + (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / (
(0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13
//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] +
 (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - 
(u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*
((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (
u(t))[26] - 2(u(t))[25])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5(u(
t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[2
4])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u
(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (
u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[2
6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2)))*(u(t))[25], Differential(t)((
u(t))[26]) ~ ((2.9(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / (
(1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3
(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[
28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[2
7])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6
 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[
26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26] -
 2.9(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2
(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 
0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1/
/4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(
u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//1
2)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[28] - 2.9
(u(t))[26] - 7.25(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (
u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[2
5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[
27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u
(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[2
8] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))
^2)) + (5.316666666666667(u(t))[26] + 0.9666666666666667(u(t))[28] - 3.3833
333333333337(u(t))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))
[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^
2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e
-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[
27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 
2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) 
+ (3.3833333333333337(u(t))[25] - 0.9666666666666667(u(t))[24] - 5.31666666
6666667(u(t))[26]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] 
- 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)
 + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + 
(1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] -
 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t
))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (2.
9(u(t))[25] - 14.5(u(t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)
*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t)
)[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t
))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*
(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))
[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2
))^2)))*(u(t))[26], Differential(t)((u(t))[27]) ~ ((3.3833333333333337(u(t)
)[26] - 0.9666666666666667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((0.3
 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)
*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(
t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t
))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.
0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(
t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[29] - 2.9(u(t))[2
7] - 7.25(u(t))[28]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29
] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^
2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) +
 (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28]
 - 2(u(t))[27])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u
(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (
0.9666666666666667(u(t))[29] + 5.316666666666667(u(t))[27] - 3.383333333333
3337(u(t))[28]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(
u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[2
6] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[
27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(
u(t))[28])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[
28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (7.25(
u(t))[26] + 2.9(u(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[
27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[2
8])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / (
(1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3
(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[
27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2
(u(t))[26])^2))^2)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((
0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13/
/12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(
u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2
(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*(
(1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u
(t))[28] - 2(u(t))[27])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t
))[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[2
8])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((
u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u
(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27
])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(
t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)))*(u(t))[27], Differential(t)((u
(t))[28]) ~ ((3.3833333333333337(u(t))[27] - 0.9666666666666667(u(t))[26] -
 5.316666666666667(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u
(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0
.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//
12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (13/
/12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[
29])^2) + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[3
1] - 4(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(
u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) +
 (2.9(u(t))[28] + 7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1/
/4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + 
(u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-0.034482758
620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*((
-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])^2
))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*((
(u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[
28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2
(u(t))[27])^2))^2)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))[28]) / ((
0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[2
7] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[2
8] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(
u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((-0.034482758620689655 / (1 
+ t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*((-0.034482758620
689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])^2))^2))*((1.0e-6
 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29
] - 2(u(t))[28])^2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9(u(t))[29])
 / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) +
 (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(
u(t))[29])^2) + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u
(t))[31] - 4(u(t))[29])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(
t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2))*((1
.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t
))[29] - 2(u(t))[28])^2))^2)) + (-0.03333333333333333 / (1 + t) + 0.9666666
666666667(u(t))[31] + 5.316666666666667(u(t))[28] - 3.3833333333333337(u(t)
)[29]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27]
)^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31
] - 2(u(t))[29])^2) + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28
] + (u(t))[31] - 4(u(t))[29])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27]
 - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2
))*((1.0e-6 + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(
t))[31] - 2(u(t))[29])^2) + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(
t))[28] + (u(t))[31] - 4(u(t))[29])^2))^2)) + (-0.049999999999999996 / (1 +
 t) + 1.45(u(t))[31] - 2.9(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] 
- 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2
) + 0.3 / ((1.0e-6 + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28
] + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*((-0.034482758620689655 / (1 + t)
 + 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])^2))^2))*((1.0e-6 + (13//12)*((-0
.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) +
 (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(
t))[29])^2))^2)))*(u(t))[28], Differential(t)((u(t))[29]) ~ ((0.11666666666
666668 / (1 + t) + 5.316666666666667(u(t))[29] - 2.416666666666667(u(t))[31
]) / ((0.6 / ((1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t))[28
] - (u(t))[31])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28
] + (u(t))[31] - 2(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.13793103
448275862 / (1 + t) + 3(u(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.068965
51724137931 / (1 + t) + (u(t))[29] - (u(t))[31])^2))^2) + 0.3 / ((1.0e-6 + 
(13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29]
 + (u(t))[27] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((0.1379310344827586
2 / (1 + t) + 3(u(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137
931 / (1 + t) + (u(t))[29] - (u(t))[31])^2))^2)) + (0.25 / (1 + t) - 2.9(u(
t))[29] - 5.8(u(t))[31]) / ((0.3 / ((1.0e-6 + (1//4)*((0.13793103448275862 
/ (1 + t) + 3(u(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.0689655172413793
1 / (1 + t) + (u(t))[29] - (u(t))[31])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(
((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[
27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.034482758620689655 
/ (1 + t) + (u(t))[28] - (u(t))[31])^2) + (13//12)*((-0.034482758620689655 
/ (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4
)*((0.13793103448275862 / (1 + t) + 3(u(t))[29] - 3.0(u(t))[31])^2) + (13//
12)*((0.06896551724137931 / (1 + t) + (u(t))[29] - (u(t))[31])^2))^2)) + (2
.9(u(t))[29] + 7.25(u(t))[28] - 1.45(u(t))[27]) / ((0.6 / ((1.0e-6 + (1//4)
*((0.034482758620689655 / (1 + t) + (u(t))[28] - (u(t))[31])^2) + (13//12)*
((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^
2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u(t))[
29] - 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 + t) + (u(t))
[29] - (u(t))[31])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))
[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1
//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (3.383333333333333
7(u(t))[28] - 0.9666666666666667(u(t))[27] - 5.316666666666667(u(t))[29]) /
 ((0.3 / ((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u(t))[29] - 
3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 + t) + (u(t))[29] -
 (u(t))[31])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] -
 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t))[28] - (
u(t))[31])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (
u(t))[31] - 2(u(t))[29])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[
29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2)
)^2)) + (0.19999999999999998 / (1 + t) + 2.9(u(t))[28] - 5.8(u(t))[31] - 14
.5(u(t))[29]) / ((0.3 / ((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) +
 3(u(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 + t)
 + (u(t))[29] - (u(t))[31])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27]
 + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t
))[28])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) +
 (u(t))[28] - (u(t))[31])^2) + (13//12)*((-0.034482758620689655 / (1 + t) +
 (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((0.03448
2758620689655 / (1 + t) + (u(t))[28] - (u(t))[31])^2) + (13//12)*((-0.03448
2758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2))^2)) + 
(0.09999999999999999 / (1 + t) + 5.8(u(t))[28] + 14.5(u(t))[29] - 2.9(u(t))
[31]) / ((0.6 / ((1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t))
[28] - (u(t))[31])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))
[28] + (u(t))[31] - 2(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.13793
103448275862 / (1 + t) + 3(u(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.068
96551724137931 / (1 + t) + (u(t))[29] - (u(t))[31])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[
29] + (u(t))[27] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((0.0344827586206
89655 / (1 + t) + (u(t))[28] - (u(t))[31])^2) + (13//12)*((-0.0344827586206
89655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2))^2)))*(u(t))[29
], 0 ~ -0.006896551724137931 / (1 + t) + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t
))[6] - 0.8(u(t))[2] - 2.0(u(t))[4], 0 ~ 0.034482758620689655 / (1 + t) + 2
.0(u(t))[29] + (u(t))[27] - 0.2(u(t))[26] - 2.0(u(t))[28] - 0.8(u(t))[31]])
), Any[(u(t))[3], (u(t))[4], (u(t))[5], (u(t))[6], (u(t))[7], (u(t))[8], (u
(t))[9], (u(t))[10], (u(t))[11], (u(t))[12]  …  Differential(t)((u(t))[22])
, Differential(t)((u(t))[23]), Differential(t)((u(t))[24]), Differential(t)
((u(t))[25]), Differential(t)((u(t))[26]), Differential(t)((u(t))[27]), Dif
ferential(t)((u(t))[28]), Differential(t)((u(t))[29]), (u(t))[2], (u(t))[31
]], ModelingToolkit.SystemStructures.SystemStructure(ModelingToolkit.System
Structures.DiffGraph(Union{Nothing, Int64}[28, 29, 30, 31, 32, 33, 34, 35, 
36, 37  …  nothing, nothing, nothing, nothing, nothing, nothing, nothing, n
othing, nothing, nothing], Union{Nothing, Int64}[nothing, nothing, nothing,
 nothing, nothing, nothing, nothing, nothing, nothing, nothing  …  20, 21, 
22, 23, 24, 25, 26, 27, nothing, nothing]), ModelingToolkit.SystemStructure
s.DiffGraph(Union{Nothing, Int64}[nothing, nothing, nothing, nothing, nothi
ng, nothing, nothing, nothing, nothing, nothing  …  nothing, nothing, nothi
ng, nothing, nothing, nothing, nothing, nothing, nothing, nothing], Union{N
othing, Int64}[nothing, nothing, nothing, nothing, nothing, nothing, nothin
g, nothing, nothing, nothing  …  nothing, nothing, nothing, nothing, nothin
g, nothing, nothing, nothing, nothing, nothing]), BipartiteGraph with (29, 
56) (𝑠,𝑑)-vertices
   #  src                    dst
  1   [1, 2, 3, 28, 55]      [1, 2, 3, 28]
  2   [1, 2, 3, 4, 29, 55]   [1, 2, 3, 4, 28]
  3   [1, 2, 3, 4, 5, 30]    [1, 2, 3, 4, 5, 28]
  4   [2, 3, 4, 5, 6, 31]    [2, 3, 4, 5, 6, 28]
  5   [3, 4, 5, 6, 7, 32]    [3, 4, 5, 6, 7]
  6   [4, 5, 6, 7, 8, 33]    [4, 5, 6, 7, 8]
  7   [5, 6, 7, 8, 9, 34]    [5, 6, 7, 8, 9]
  8   [6, 7, 8, 9, 10, 35]   [6, 7, 8, 9, 10]
  9   [7, 8, 9, 10, 11, 36]  [7, 8, 9, 10, 11]
  ⋮                          
 48   ⋅                      [21]
 49   ⋅                      [22]
 50   ⋅                      [23]
 51   ⋅                      [24]
 52   ⋅                      [25]
 53   ⋅                      [26]
 54   ⋅                      [27]
 55   ⋅                      [1, 2, 28]
 56   ⋅                      [26, 27, 29], BipartiteGraph with (31, 58) (𝑠,
𝑑)-vertices
   #  src  dst
  1   [1]  [1]
  2   [2]  [2]
  3   [3]  [3]
  4   [4]  [4]
  5   [5]  [5]
  6   [6]  [6]
  7   [7]  [7]
  8   [8]  [8]
  9   [9]  [9]
  ⋮        
 50   ⋅    ∅
 51   ⋅    [31]
 52   ⋅    [31]
 53   ⋅    [31]
 54   ⋅    [31]
 55   ⋅    [28, 30]
 56   ⋅    [28, 30]
 57   ⋅    [29, 31]
 58   ⋅    [29, 31]), Any[]), ModelingToolkit.Substitutions(Symbolics.Equat
ion[(u(t))[30] ~ -0.034482758620689655 / (1 + t) + (u(t))[31], (u(t))[1] ~ 
-0.034482758620689655 / (1 + t) + (u(t))[2]], [Int64[], Int64[]], Symbolics
.Equation[Differential(t)((u(t))[3]) ~ ((0.049999999999999996 / (1 + t) + 2
.9(u(t))[3] + 5.8(u(t))[2]) / ((0.3 / ((1.0e-6 + (1//4)*((-0.03448275862068
9655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.034482758620
689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3]
)^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2
) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4
)*((-0.034482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//
12)*((-0.034482758620689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2)) + (0
.03333333333333333 / (1 + t) + 2.416666666666667(u(t))[2] - 5.3166666666666
67(u(t))[3]) / ((0.1 / ((1.0e-6 + (1//4)*((-0.034482758620689655 / (1 + t) 
+ 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.034482758620689655 / (1 + t
) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (
u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*((
(u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((-0.03448275
8620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.034482
758620689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2)) + (2.9(u(t))[2] - 1
4.5(u(t))[3] - 5.8(u(t))[4]) / ((0.1 / ((1.0e-6 + (1//4)*((-0.0344827586206
89655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12)*((-0.03448275862
0689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//
4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))
[3])^2))^2)) + (1.45(u(t))[5] - 2.9(u(t))[3] - 7.25(u(t))[4]) / ((0.1 / ((1
.0e-6 + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2
])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[3] - (u(t))[2])
^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*((
(u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(
u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5.3166666666
66667(u(t))[3] + 0.9666666666666667(u(t))[5] - 3.3833333333333337(u(t))[4])
 / ((0.3 / ((1.0e-6 + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[3]
 - 3.0(u(t))[2])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[3
] - (u(t))[2])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2)
 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[3] + (u(t))[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + 
(u(t))[5] - 2(u(t))[4])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))[5] 
- 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) +
 (5.8(u(t))[2] + 14.5(u(t))[3] - 2.9(u(t))[4]) / ((0.3 / ((1.0e-6 + (1//4)*
((-0.034482758620689655 / (1 + t) + 3(u(t))[3] - 3.0(u(t))[2])^2) + (13//12
)*((-0.034482758620689655 / (1 + t) + (u(t))[3] - (u(t))[2])^2))^2) + 0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (u(
t))[4] - 2(u(t))[3])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[3] + (u(t))
[5] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2
))*((1.0e-6 + (1//4)*(((u(t))[2] - (u(t))[4])^2) + (13//12)*(((u(t))[2] + (
u(t))[4] - 2(u(t))[3])^2))^2)))*(u(t))[3], Differential(t)((u(t))[4]) ~ ((3
.3833333333333337(u(t))[3] - 0.9666666666666667(u(t))[2] - 5.31666666666666
7(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))
[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1.
0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[5
] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] -
 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t
))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)) + (2.9(u(t))[3] - 5.8(u(t))[5] - 14
.5(u(t))[4]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t)
)[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t))[
5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] 
- 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2))*(
(1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*(((u(t))[3] + (u(t)
)[5] - 2(u(t))[4])^2))^2)) + (0.9666666666666667(u(t))[6] + 5.3166666666666
67(u(t))[4] - 3.3833333333333337(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)*((
(u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 
4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + 
(13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(
t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] - 4
(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (1
.45(u(t))[6] - 2.9(u(t))[4] - 7.25(u(t))[5]) / ((0.1 / ((1.0e-6 + (13//12)*
(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] 
- 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) 
+ (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (
u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[4] + (u(t))[6] -
 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + 
(5.8(u(t))[3] + 14.5(u(t))[4] - 2.9(u(t))[5]) / ((0.3 / ((1.0e-6 + (13//12)
*(((u(t))[2] + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2]
 - 4(u(t))[3])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2)
 + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + 
(u(t))[6] - 2(u(t))[5])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^
2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (7.25(u(t))[3
] + 2.9(u(t))[4] - 1.45(u(t))[2]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[2]
 + (u(t))[4] - 2(u(t))[3])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[3] - (u(t))[5])^2) + (13//12)*
(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[4] + (u(t))[6] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 
2(u(t))[5])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[2] + (u(t))[4] - 2(u(t))[3
])^2) + (1//4)*((3(u(t))[4] + (u(t))[2] - 4(u(t))[3])^2))^2)))*(u(t))[4], D
ifferential(t)((u(t))[5]) ~ ((3.3833333333333337(u(t))[4] - 0.9666666666666
667(u(t))[3] - 5.316666666666667(u(t))[5]) / ((0.1 / ((1.0e-6 + (1//4)*((3(
u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 
2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + 
(13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(
t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4
(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2)) + (5
.8(u(t))[4] + 14.5(u(t))[5] - 2.9(u(t))[6]) / ((0.6 / ((1.0e-6 + (1//4)*(((
u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2
))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) +
 (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.1 / ((1.0e-6 + (
13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u
(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2)
 + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (0.966666666666
6667(u(t))[7] + 5.316666666666667(u(t))[5] - 3.3833333333333337(u(t))[6]) /
 ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[
4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5] 
+ (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4
])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])
^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13/
/12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t)
)[7] - 4(u(t))[6])^2))^2)) + (2.9(u(t))[5] + 7.25(u(t))[4] - 1.45(u(t))[3])
 / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t)
)[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[5
] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))
[4])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6
])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u(t))[3] + (u(
t))[5] - 2(u(t))[4])^2))^2)) + (2.9(u(t))[4] - 5.8(u(t))[6] - 14.5(u(t))[5]
) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (
13//12)*(((u(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t)
)[5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[
6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(
t))[5])^2))^2)) + (1.45(u(t))[7] - 2.9(u(t))[5] - 7.25(u(t))[6]) / ((0.1 / 
((1.0e-6 + (1//4)*((3(u(t))[5] + (u(t))[3] - 4(u(t))[4])^2) + (13//12)*(((u
(t))[3] + (u(t))[5] - 2(u(t))[4])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[4] - (u(t))[6])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)
 + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1/
/4)*((3(u(t))[5] + (u(t))[7] - 4(u(t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[5] + (u(t))[7] - 4(
u(t))[6])^2))^2)))*(u(t))[5], Differential(t)((u(t))[6]) ~ ((2.9(u(t))[6] +
 7.25(u(t))[5] - 1.45(u(t))[4]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (
u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 
/ ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*((
(u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(
u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^
2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2)) + (3.3833333333
333337(u(t))[5] - 0.9666666666666667(u(t))[4] - 5.316666666666667(u(t))[6])
 / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (1
3//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))
[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7]
)^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1
//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(
t))[6] - 2(u(t))[5])^2))^2)) + (5.316666666666667(u(t))[6] + 0.966666666666
6667(u(t))[8] - 3.3833333333333337(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*((
(u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^
2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) 
+ (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6 + 
(1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (
u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8] -
 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + 
(1.45(u(t))[8] - 2.9(u(t))[6] - 7.25(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*
((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6
] - 2(u(t))[5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2
) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] +
 (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[8]
 - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) 
+ (5.8(u(t))[5] + 14.5(u(t))[6] - 2.9(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[5] - (u(t))[7])^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6
])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[6] + (u(t))[4] - 4(u(t))[5])^
2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[5])^2))^2) + 0.1 / ((1.0e-6
 + (1//4)*((3(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] 
+ (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7]
)^2) + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)) + (2.9(u(t))[
5] - 14.5(u(t))[6] - 5.8(u(t))[7]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[6]
 + (u(t))[4] - 4(u(t))[5])^2) + (13//12)*(((u(t))[4] + (u(t))[6] - 2(u(t))[
5])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//12)
*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3
(u(t))[6] + (u(t))[8] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] -
 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[5] - (u(t))[7])^2) + (13//1
2)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2))^2)))*(u(t))[6], Differential(t
)((u(t))[7]) ~ ((3.3833333333333337(u(t))[6] - 0.9666666666666667(u(t))[5] 
- 5.316666666666667(u(t))[7]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(
t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u
(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(
t))[6])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2
) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (7.25(u(t))[6] 
+ 2.9(u(t))[7] - 1.45(u(t))[5]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (
u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3
(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(
t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(
u(t))[8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])
^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)) + (5.8(u(t))[6]
 + 14.5(u(t))[7] - 2.9(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - 
(u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3
 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1//4)*((
3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u
(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2
(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)
*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[9] - 2.9(u(t))
[7] - 7.25(u(t))[8]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2
) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 
+ (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (
u(t))[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//1
2)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2)) + (0.9666666666666667(u(t)
)[9] + 5.316666666666667(u(t))[7] - 3.3833333333333337(u(t))[8]) / ((0.6 / 
((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t
))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))
[7] - 2(u(t))[6])^2) + (1//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2)
 + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13/
/12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//4)*((3(u(
t))[7] + (u(t))[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(
u(t))[8])^2))^2)) + (2.9(u(t))[6] - 14.5(u(t))[7] - 5.8(u(t))[8]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(
t))[8] - 2(u(t))[7])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[7] + (u(t))
[9] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[5] + (u(t))[7] - 2(u(t))[6])^2) + (1
//4)*((3(u(t))[7] + (u(t))[5] - 4(u(t))[6])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[6] - (u(t))[8])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))
^2)))*(u(t))[7], Differential(t)((u(t))[8]) ~ ((7.25(u(t))[7] + 2.9(u(t))[8
] - 1.45(u(t))[6]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] -
 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0
.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u
(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2
))^2))*((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//1
2)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2)) + (1.45(u(t))[10] - 2.9(u(
t))[8] - 7.25(u(t))[9]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[
10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2
) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13
//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4
)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[
8])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) +
 (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)) + (3.38333333333333
37(u(t))[7] - 0.9666666666666667(u(t))[6] - 5.316666666666667(u(t))[8]) / (
(0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//
4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1//4)
*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[
8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^
2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t)
)[8] - 2(u(t))[7])^2))^2)) + (2.9(u(t))[7] - 5.8(u(t))[9] - 14.5(u(t))[8]) 
/ ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (
1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1/
/4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t
))[8] - 2(u(t))[7])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9
])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2))*((1.0e-6 + (
1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(
t))[8])^2))^2)) + (5.8(u(t))[7] + 14.5(u(t))[8] - 2.9(u(t))[9]) / ((0.1 / (
(1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u
(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] + (u(t))[6] - 4(u(t))[7])^2) + (13
//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7])^2))^2))*((1.0e-6 + (1//4)*(((u(
t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))
^2)) + (0.9666666666666667(u(t))[10] + 5.316666666666667(u(t))[8] - 3.38333
33333333337(u(t))[9]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10
] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2) 
+ 0.6 / ((1.0e-6 + (1//4)*(((u(t))[7] - (u(t))[9])^2) + (13//12)*(((u(t))[7
] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[8] +
 (u(t))[6] - 4(u(t))[7])^2) + (13//12)*(((u(t))[6] + (u(t))[8] - 2(u(t))[7]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (
1//4)*((3(u(t))[8] + (u(t))[10] - 4(u(t))[9])^2))^2)))*(u(t))[8], Different
ial(t)((u(t))[9]) ~ ((2.9(u(t))[9] + 7.25(u(t))[8] - 1.45(u(t))[7]) / ((0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(
((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((
u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] 
- 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2
) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//
4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t)
)[9] - 2(u(t))[8])^2))^2)) + (1.45(u(t))[11] - 2.9(u(t))[9] - 7.25(u(t))[10
]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2)
 + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] +
 (u(t))[9] - 2(u(t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(
t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0
e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t)
)[9] + (u(t))[11] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[8] - 0
.9666666666666667(u(t))[7] - 5.316666666666667(u(t))[9]) / ((0.3 / ((1.0e-6
 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9
] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[9]
 + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[
8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12
)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*((3(u(t)
)[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(
t))[8])^2))^2)) + (5.8(u(t))[8] + 14.5(u(t))[9] - 2.9(u(t))[10]) / ((0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u
(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t
))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4
(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) +
 (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[
9])^2))^2)) + (2.9(u(t))[8] - 14.5(u(t))[9] - 5.8(u(t))[10]) / ((0.3 / ((1.
0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t
))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t)
)[9] + (u(t))[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(
t))[8])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[8] - (u(t))[10])^2) + (13
//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2))^2))*((1.0e-6 + (1//4)*(((u
(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^
2))^2)) + (5.316666666666667(u(t))[9] + 0.9666666666666667(u(t))[11] - 3.38
33333333333337(u(t))[10]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[9] + (u(t))
[7] - 4(u(t))[8])^2) + (13//12)*(((u(t))[7] + (u(t))[9] - 2(u(t))[8])^2))^2
) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + 
(1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (
1//4)*(((u(t))[8] - (u(t))[10])^2) + (13//12)*(((u(t))[8] + (u(t))[10] - 2(
u(t))[9])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10
])^2) + (1//4)*((3(u(t))[9] + (u(t))[11] - 4(u(t))[10])^2))^2)))*(u(t))[9],
 Differential(t)((u(t))[10]) ~ ((5.8(u(t))[9] + 14.5(u(t))[10] - 2.9(u(t))[
11]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2
) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 
+ (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[1
0] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9]
 - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (
u(t))[11] - 2(u(t))[10])^2))^2)) + (7.25(u(t))[9] + 2.9(u(t))[10] - 1.45(u(
t))[8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9]
)^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e
-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t)
)[10] + (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (1//4)
*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (1.45(u(t))[12] - 2.9(u(
t))[10] - 7.25(u(t))[11]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t)
)[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))
^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(
t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(
t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] 
- 4(u(t))[11])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(
t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)) + (3
.3833333333333337(u(t))[9] - 0.9666666666666667(u(t))[8] - 5.31666666666666
7(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t
))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t
))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(
t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[12] - 4(u(t))[11]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + (
1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2)) + (2.9(u(t))[9] - 5.8
(u(t))[11] - 14.5(u(t))[10]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u
(t))[10] - 2(u(t))[9])^2) + (1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^
2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + (13//12)*((
(u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((
(u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] + (u(t))[1
2] - 4(u(t))[11])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[9] - (u(t))[11])^2) + 
(13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2)) + (0.9666666666666
667(u(t))[12] + 5.316666666666667(u(t))[10] - 3.3833333333333337(u(t))[11])
 / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[8] + (u(t))[10] - 2(u(t))[9])^2) + 
(1//4)*((3(u(t))[10] + (u(t))[8] - 4(u(t))[9])^2))^2) + 0.1 / ((1.0e-6 + (1
3//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[10] +
 (u(t))[12] - 4(u(t))[11])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[9] - (
u(t))[11])^2) + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2))^2))*((
1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(
u(t))[10] + (u(t))[12] - 4(u(t))[11])^2))^2)))*(u(t))[10], Differential(t)(
(u(t))[11]) ~ ((2.9(u(t))[11] + 7.25(u(t))[10] - 1.45(u(t))[9]) / ((0.6 / (
(1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u
(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u
(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[1
2])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[1
0])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11]
 + (u(t))[9] - 4(u(t))[10])^2))^2)) + (3.3833333333333337(u(t))[10] - 0.966
6666666666667(u(t))[9] - 5.316666666666667(u(t))[11]) / ((0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] 
+ (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - 
(u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) +
 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13
//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2))*((1.0e-6 + (13//12)*
(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[
9] - 4(u(t))[10])^2))^2)) + (2.9(u(t))[10] - 5.8(u(t))[12] - 14.5(u(t))[11]
) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[11] - 2(u(t))[10])^2) 
+ (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^2) + 0.6 / ((1.0e-6 +
 (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] + (u(t))[12] 
- 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] 
- 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2
))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(t))[10] 
+ (u(t))[12] - 2(u(t))[11])^2))^2)) + (5.8(u(t))[10] + 14.5(u(t))[11] - 2.9
(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13
//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (1
//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] +
 (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[9] +
 (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[
10])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((
u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2)) + (1.45(u(t))[13] - 2.9(u(t))
[11] - 7.25(u(t))[12]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[9] + (u(t))[1
1] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(t))[10])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) + (13//12)*(((u(
t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13]
 - 2(u(t))[12])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(
t))[12])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)) + (
5.316666666666667(u(t))[11] + 0.9666666666666667(u(t))[13] - 3.383333333333
3337(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[10] - (u(t))[12])^2) +
 (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 
+ (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12])^2) + (13//12)*(((u(t))[1
1] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[
9] + (u(t))[11] - 2(u(t))[10])^2) + (1//4)*((3(u(t))[11] + (u(t))[9] - 4(u(
t))[10])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[11] + (u(t))[13] - 4(u(t))[12]
)^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2)))*(u(t))[11
], Differential(t)((u(t))[12]) ~ ((5.316666666666667(u(t))[12] + 0.96666666
66666667(u(t))[14] - 3.3833333333333337(u(t))[13]) / ((0.6 / ((1.0e-6 + (1/
/4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(
u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2
(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 
0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1/
/4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(
((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[
14] - 4(u(t))[13])^2))^2)) + (2.9(u(t))[12] + 7.25(u(t))[11] - 1.45(u(t))[1
0]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*((
(u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(
((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[
10] - 4(u(t))[11])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))
[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1
//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2)) + (1.45(u(t))[14] - 
2.9(u(t))[12] - 7.25(u(t))[13]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[11] - 
(u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2))^2) +
 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^2) + (1
//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e-6 + (1
3//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] +
 (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[12] + (u(t)
)[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^
2))^2)) + (5.8(u(t))[11] + 14.5(u(t))[12] - 2.9(u(t))[13]) / ((0.6 / ((1.0e
-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[
13] - 2(u(t))[12])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))
[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^
2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (1
//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2
(u(t))[12])^2))^2)) + (3.3833333333333337(u(t))[11] - 0.9666666666666667(u(
t))[10] - 5.316666666666667(u(t))[12]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))
[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[13] - 2(u(t))[12])^2
))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] + (u(t))[12] - 2(u(t))[11])^
2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))[11])^2))^2) + 0.3 / ((1.0e
-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t))[13])^2) + (1//4)*((3(u(t)
)[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[10] 
+ (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t)
)[11])^2))^2)) + (2.9(u(t))[11] - 14.5(u(t))[12] - 5.8(u(t))[13]) / ((0.6 /
 ((1.0e-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + 
(u(t))[13] - 2(u(t))[12])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[10] +
 (u(t))[12] - 2(u(t))[11])^2) + (1//4)*((3(u(t))[12] + (u(t))[10] - 4(u(t))
[11])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[12] + (u(t))[14] - 2(u(t)
)[13])^2) + (1//4)*((3(u(t))[12] + (u(t))[14] - 4(u(t))[13])^2))^2))*((1.0e
-6 + (1//4)*(((u(t))[11] - (u(t))[13])^2) + (13//12)*(((u(t))[11] + (u(t))[
13] - 2(u(t))[12])^2))^2)))*(u(t))[12]  …  Differential(t)((u(t))[22]) ~ ((
3.3833333333333337(u(t))[21] - 0.9666666666666667(u(t))[20] - 5.31666666666
6667(u(t))[22]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(
u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[2
1] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[2
2] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(
u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[2
1])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (5.8(u
(t))[21] + 14.5(u(t))[22] - 2.9(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(
u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[2
2] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23
])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((
u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[21
] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^
2)) + (2.9(u(t))[21] - 5.8(u(t))[23] - 14.5(u(t))[22]) / ((0.1 / ((1.0e-6 +
 (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(t))[20
] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21]
 - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2
) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[23])^2) + 
(13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)
*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2))^2)) + (7.25(u(t))[21] + 2.9(u(t))[22] - 1.45(u(t))[20]) / ((0.3
 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12
)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 0.6 / ((1.0e-6 + (1//4)
*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t
))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t
))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2))*((1.
0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(u(t))[21])^2) + (13//12)*(((u(
t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2)) + (1.45(u(t))[24] - 2.9(u(t))[2
2] - 7.25(u(t))[23]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20]
 - 4(u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^
2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(
t))[21] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(
t))[22] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24]
 - 2(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(
t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (
0.9666666666666667(u(t))[24] + 5.316666666666667(u(t))[22] - 3.383333333333
3337(u(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[20] - 4(
u(t))[21])^2) + (13//12)*(((u(t))[20] + (u(t))[22] - 2(u(t))[21])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*(((u(t))[21] - (u(t))[23])^2) + (13//12)*(((u(t))[2
1] + (u(t))[23] - 2(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[2
2] + (u(t))[24] - 4(u(t))[23])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(
u(t))[23])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[22] + (u(t))[24] - 4(u(t))[2
3])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)))*(u(t))[
22], Differential(t)((u(t))[23]) ~ ((3.3833333333333337(u(t))[22] - 0.96666
66666666667(u(t))[21] - 5.316666666666667(u(t))[23]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] -
 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (1
3//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)
*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t)
)[21] - 4(u(t))[22])^2))^2)) + (5.8(u(t))[22] + 14.5(u(t))[23] - 2.9(u(t))[
24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(
((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*
(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))
[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))
[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^
2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))
[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (2.9(u(t))[22] - 14.5(u(t))[23] 
- 5.8(u(t))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) 
+ (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6
 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[
23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[
23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2
(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//
12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2)) + (5.316666666666667(u
(t))[23] + 0.9666666666666667(u(t))[25] - 3.3833333333333337(u(t))[24]) / (
(0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[
22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4
(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4
(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*
((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(
((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (2.9(u(t))[23] + 7.25(u(t
))[22] - 1.45(u(t))[21]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[22] - (u(t))[
24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2))^2) + 0.3 / 
((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] - 2(u(t))[22])^2) + (1//4)*((
3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((
3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))
[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] -
 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2))
 + (1.45(u(t))[25] - 2.9(u(t))[23] - 7.25(u(t))[24]) / ((0.6 / ((1.0e-6 + (
1//4)*(((u(t))[22] - (u(t))[24])^2) + (13//12)*(((u(t))[22] + (u(t))[24] - 
2(u(t))[23])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[21] + (u(t))[23] -
 2(u(t))[22])^2) + (1//4)*((3(u(t))[23] + (u(t))[21] - 4(u(t))[22])^2))^2) 
+ 0.3 / ((1.0e-6 + (1//4)*((3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (1
3//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(
(3(u(t))[23] + (u(t))[25] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t)
)[25] - 2(u(t))[24])^2))^2)))*(u(t))[23], Differential(t)((u(t))[24]) ~ ((1
.45(u(t))[26] - 2.9(u(t))[24] - 7.25(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)
*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(
t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1
 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)
*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (13//12)*(((u
(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26]
 - 4(u(t))[25])^2))^2)) + (7.25(u(t))[23] + 2.9(u(t))[24] - 1.45(u(t))[22])
 / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) 
+ (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 
+ (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[2
4] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[23
] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^
2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4
)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (5.8(u(t))[23] + 14.5
(u(t))[24] - 2.9(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u
(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25
])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[2
3])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((
1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(
t))[25] - 2(u(t))[24])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])
^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (3.383333
3333333337(u(t))[23] - 0.9666666666666667(u(t))[22] - 5.316666666666667(u(t
))[24]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23] - (u(t))[25])^2) + (13//12
)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(
t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u
(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23
])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) 
+ (1//4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2)) + (2.9(u(t))[23]
 - 14.5(u(t))[24] - 5.8(u(t))[25]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[23]
 - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2
) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) +
 (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 +
 (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//4)*((3(u(t))[24
] + (u(t))[22] - 4(u(t))[23])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[23] - (u(t
))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (0
.9666666666666667(u(t))[26] + 5.316666666666667(u(t))[24] - 3.3833333333333
337(u(t))[25]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(
u(t))[25])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2) + 0
.3 / ((1.0e-6 + (13//12)*(((u(t))[22] + (u(t))[24] - 2(u(t))[23])^2) + (1//
4)*((3(u(t))[24] + (u(t))[22] - 4(u(t))[23])^2))^2) + 0.6 / ((1.0e-6 + (1//
4)*(((u(t))[23] - (u(t))[25])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u
(t))[24])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[2
5])^2) + (1//4)*((3(u(t))[24] + (u(t))[26] - 4(u(t))[25])^2))^2)))*(u(t))[2
4], Differential(t)((u(t))[25]) ~ ((7.25(u(t))[24] + 2.9(u(t))[25] - 1.45(u
(t))[23]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[
24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / 
((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((
3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((
(u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[
25])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2)
 + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2)) + (5.316666666
666667(u(t))[25] + 0.9666666666666667(u(t))[27] - 3.3833333333333337(u(t))[
26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^
2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0
e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t
))[25] + (u(t))[27] - 4(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t)
)[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^
2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (
1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2)) + (1.45(u(t))[27] -
 2.9(u(t))[25] - 7.25(u(t))[26]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] 
+ (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t
))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (1
3//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (
13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] 
+ (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[25] + (u(t
))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])
^2))^2)) + (3.3833333333333337(u(t))[24] - 0.9666666666666667(u(t))[23] - 5
.316666666666667(u(t))[25]) / ((0.1 / ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(
t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24
])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12
)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2) + 0.3 / ((1.0e-6 + (13//1
2)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(
t))[27] - 4(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23]
 - 4(u(t))[24])^2) + (13//12)*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^
2)) + (5.8(u(t))[24] + 14.5(u(t))[25] - 2.9(u(t))[26]) / ((0.3 / ((1.0e-6 +
 (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)*(((u(t))[23
] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[2
5] + (u(t))[27] - 2(u(t))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u
(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + 
(13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2))^2))*((1.0e-6 + (1//4)
*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t
))[25])^2))^2)) + (2.9(u(t))[24] - 5.8(u(t))[26] - 14.5(u(t))[25]) / ((0.1 
/ ((1.0e-6 + (1//4)*((3(u(t))[25] + (u(t))[23] - 4(u(t))[24])^2) + (13//12)
*(((u(t))[23] + (u(t))[25] - 2(u(t))[24])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t)
)[25])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t
))[26])^2) + (1//4)*((3(u(t))[25] + (u(t))[27] - 4(u(t))[26])^2))^2))*((1.0
e-6 + (1//4)*(((u(t))[24] - (u(t))[26])^2) + (13//12)*(((u(t))[24] + (u(t))
[26] - 2(u(t))[25])^2))^2)))*(u(t))[25], Differential(t)((u(t))[26]) ~ ((2.
9(u(t))[26] + 7.25(u(t))[25] - 1.45(u(t))[24]) / ((0.3 / ((1.0e-6 + (13//12
)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t
))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(
t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)
*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (13//12)*(((u(
t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] 
- 4(u(t))[25])^2))^2)) + (5.8(u(t))[25] + 14.5(u(t))[26] - 2.9(u(t))[27]) /
 ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + 
(1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1.0e-6 + 
(13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[26]
 + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[25] 
- (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)
)*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] +
 (u(t))[27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[28] - 2.9(u(t))[26] - 7.25
(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t
))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 
/ ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*
((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*
(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t)
)[26])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])
^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (5.3166666
66666667(u(t))[26] + 0.9666666666666667(u(t))[28] - 3.3833333333333337(u(t)
)[27]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25
])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.1 / ((1
.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u
(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(
t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2))^2))*((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) +
 (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2)) + (3.383333333333
3337(u(t))[25] - 0.9666666666666667(u(t))[24] - 5.316666666666667(u(t))[26]
) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2)
 + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2) + 0.3 / ((1.0e-6
 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2) + (1//4)*((3(u(t))[
26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[2
5] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))
^2))*((1.0e-6 + (13//12)*(((u(t))[24] + (u(t))[26] - 2(u(t))[25])^2) + (1//
4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[25])^2))^2)) + (2.9(u(t))[25] - 14.
5(u(t))[26] - 5.8(u(t))[27]) / ((0.1 / ((1.0e-6 + (13//12)*(((u(t))[24] + (
u(t))[26] - 2(u(t))[25])^2) + (1//4)*((3(u(t))[26] + (u(t))[24] - 4(u(t))[2
5])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[
27])^2) + (1//4)*((3(u(t))[26] + (u(t))[28] - 4(u(t))[27])^2))^2) + 0.6 / (
(1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27])^2) + (13//12)*(((u(t))[25] + (u
(t))[27] - 2(u(t))[26])^2))^2))*((1.0e-6 + (1//4)*(((u(t))[25] - (u(t))[27]
)^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2)))*(u(t))[26
], Differential(t)((u(t))[27]) ~ ((3.3833333333333337(u(t))[26] - 0.9666666
666666667(u(t))[25] - 5.316666666666667(u(t))[27]) / ((0.3 / ((1.0e-6 + (13
//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + 
(u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[27] + 
(u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))
[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13/
/12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e-6 + (1//4)*((3
(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[
27] - 2(u(t))[26])^2))^2)) + (1.45(u(t))[29] - 2.9(u(t))[27] - 7.25(u(t))[2
8]) / ((0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^
2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e
-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t)
)[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))
[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2
))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1
//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (0.966666666666666
7(u(t))[29] + 5.316666666666667(u(t))[27] - 3.3833333333333337(u(t))[28]) /
 ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (
13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] -
 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] 
- 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)
)*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*
((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2)) + (7.25(u(t))[26] + 2.9(u
(t))[27] - 1.45(u(t))[25]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t
))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)
*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12
)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[27] + (u(t
))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[27] + (u(t))[25] 
- 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t))[27] - 2(u(t))[26])^2))^2
)) + (5.8(u(t))[26] + 14.5(u(t))[27] - 2.9(u(t))[28]) / ((0.3 / ((1.0e-6 + 
(1//4)*((3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25]
 + (u(t))[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] 
- (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)
 + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + 
(1//4)*((3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*
(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t)
)[27])^2))^2)) + (2.9(u(t))[26] - 5.8(u(t))[28] - 14.5(u(t))[27]) / ((0.3 /
 ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*(
(3(u(t))[27] + (u(t))[29] - 4(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*(
(3(u(t))[27] + (u(t))[25] - 4(u(t))[26])^2) + (13//12)*(((u(t))[25] + (u(t)
)[27] - 2(u(t))[26])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[26] - (u(t))
[28])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2))*((1.0e
-6 + (1//4)*(((u(t))[26] - (u(t))[28])^2) + (13//12)*(((u(t))[26] + (u(t))[
28] - 2(u(t))[27])^2))^2)))*(u(t))[27], Differential(t)((u(t))[28]) ~ ((3.3
833333333333337(u(t))[27] - 0.9666666666666667(u(t))[26] - 5.31666666666666
7(u(t))[28]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (1
3//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (
1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] 
+ (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*((-0.0344827
58620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*
((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])
^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (
13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)) + (2.9(u(t))[28] +
 7.25(u(t))[27] - 1.45(u(t))[26]) / ((0.3 / ((1.0e-6 + (1//4)*((3(u(t))[28]
 + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(
t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-0.034482758620689655 / (1 + 
t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*((-0.03448275862068
9655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])^2))^2) + 0.6 / ((1
.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t
))[29] - 2(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] 
- 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2
)) + (2.9(u(t))[27] - 5.8(u(t))[29] - 14.5(u(t))[28]) / ((0.6 / ((1.0e-6 + 
(1//4)*(((u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] -
 2(u(t))[28])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] -
 4(u(t))[27])^2) + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2)
 + 0.3 / ((1.0e-6 + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28]
 + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*((-0.034482758620689655 / (1 + t) 
+ 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*(((u(t)
)[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^
2))^2)) + (5.8(u(t))[27] + 14.5(u(t))[28] - 2.9(u(t))[29]) / ((0.3 / ((1.0e
-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(((u(t)
)[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*((-0.0
34482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (
1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t)
)[29])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2) + (13
//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((
(u(t))[27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[
28])^2))^2)) + (-0.03333333333333333 / (1 + t) + 0.9666666666666667(u(t))[3
1] + 5.316666666666667(u(t))[28] - 3.3833333333333337(u(t))[29]) / ((0.3 / 
((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2) + (13//12)*(
((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*
((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^
2) + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 
4(u(t))[29])^2))^2) + 0.6 / ((1.0e-6 + (1//4)*(((u(t))[27] - (u(t))[29])^2)
 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2))^2))*((1.0e-6 + (13
//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))
[29])^2) + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[
31] - 4(u(t))[29])^2))^2)) + (-0.049999999999999996 / (1 + t) + 1.45(u(t))[
31] - 2.9(u(t))[28] - 7.25(u(t))[29]) / ((0.6 / ((1.0e-6 + (1//4)*(((u(t))[
27] - (u(t))[29])^2) + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2)
)^2) + 0.1 / ((1.0e-6 + (1//4)*((3(u(t))[28] + (u(t))[26] - 4(u(t))[27])^2)
 + (13//12)*(((u(t))[26] + (u(t))[28] - 2(u(t))[27])^2))^2) + 0.3 / ((1.0e-
6 + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 
2(u(t))[29])^2) + (1//4)*((-0.034482758620689655 / (1 + t) + 3(u(t))[28] + 
(u(t))[31] - 4(u(t))[29])^2))^2))*((1.0e-6 + (13//12)*((-0.0344827586206896
55 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2) + (1//4)*((-0.0344
82758620689655 / (1 + t) + 3(u(t))[28] + (u(t))[31] - 4(u(t))[29])^2))^2)))
*(u(t))[28], Differential(t)((u(t))[29]) ~ ((0.11666666666666668 / (1 + t) 
+ 5.316666666666667(u(t))[29] - 2.416666666666667(u(t))[31]) / ((0.6 / ((1.
0e-6 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t))[28] - (u(t))[31])^2
) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 
2(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + 
t) + 3(u(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 
+ t) + (u(t))[29] - (u(t))[31])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))
[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4
(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u
(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 + t) + (
u(t))[29] - (u(t))[31])^2))^2)) + (0.25 / (1 + t) - 2.9(u(t))[29] - 5.8(u(t
))[31]) / ((0.3 / ((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u(t
))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 + t) + (u(
t))[29] - (u(t))[31])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(
t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28]
)^2))^2) + 0.6 / ((1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t)
)[28] - (u(t))[31])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t)
)[28] + (u(t))[31] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((0.13793103448
275862 / (1 + t) + 3(u(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.068965517
24137931 / (1 + t) + (u(t))[29] - (u(t))[31])^2))^2)) + (2.9(u(t))[29] + 7.
25(u(t))[28] - 1.45(u(t))[27]) / ((0.6 / ((1.0e-6 + (1//4)*((0.034482758620
689655 / (1 + t) + (u(t))[28] - (u(t))[31])^2) + (13//12)*((-0.034482758620
689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2))^2) + 0.1 / ((
1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u(t))[29] - 3.0(u(t))[3
1])^2) + (13//12)*((0.06896551724137931 / (1 + t) + (u(t))[29] - (u(t))[31]
)^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28
])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2))*((1.0e-6 +
 (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29
] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (3.3833333333333337(u(t))[28] - 0.9
666666666666667(u(t))[27] - 5.316666666666667(u(t))[29]) / ((0.3 / ((1.0e-6
 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u(t))[29] - 3.0(u(t))[31])^2)
 + (13//12)*((0.06896551724137931 / (1 + t) + (u(t))[29] - (u(t))[31])^2))^
2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28])^2) 
+ (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 0.6 / ((1.0e-6 
+ (1//4)*((0.034482758620689655 / (1 + t) + (u(t))[28] - (u(t))[31])^2) + (
13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t
))[29])^2))^2))*((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2(u(t))[28]
)^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2)) + (0.199999
99999999998 / (1 + t) + 2.9(u(t))[28] - 5.8(u(t))[31] - 14.5(u(t))[29]) / (
(0.3 / ((1.0e-6 + (1//4)*((0.13793103448275862 / (1 + t) + 3(u(t))[29] - 3.
0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / (1 + t) + (u(t))[29] - (
u(t))[31])^2))^2) + 0.1 / ((1.0e-6 + (13//12)*(((u(t))[27] + (u(t))[29] - 2
(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] - 4(u(t))[28])^2))^2) + 
0.6 / ((1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t))[28] - (u(
t))[31])^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(
t))[31] - 2(u(t))[29])^2))^2))*((1.0e-6 + (1//4)*((0.034482758620689655 / (
1 + t) + (u(t))[28] - (u(t))[31])^2) + (13//12)*((-0.034482758620689655 / (
1 + t) + (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2))^2)) + (0.09999999999999
999 / (1 + t) + 5.8(u(t))[28] + 14.5(u(t))[29] - 2.9(u(t))[31]) / ((0.6 / (
(1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) + (u(t))[28] - (u(t))[31]
)^2) + (13//12)*((-0.034482758620689655 / (1 + t) + (u(t))[28] + (u(t))[31]
 - 2(u(t))[29])^2))^2) + 0.1 / ((1.0e-6 + (1//4)*((0.13793103448275862 / (1
 + t) + 3(u(t))[29] - 3.0(u(t))[31])^2) + (13//12)*((0.06896551724137931 / 
(1 + t) + (u(t))[29] - (u(t))[31])^2))^2) + 0.3 / ((1.0e-6 + (13//12)*(((u(
t))[27] + (u(t))[29] - 2(u(t))[28])^2) + (1//4)*((3(u(t))[29] + (u(t))[27] 
- 4(u(t))[28])^2))^2))*((1.0e-6 + (1//4)*((0.034482758620689655 / (1 + t) +
 (u(t))[28] - (u(t))[31])^2) + (13//12)*((-0.034482758620689655 / (1 + t) +
 (u(t))[28] + (u(t))[31] - 2(u(t))[29])^2))^2)))*(u(t))[29], 0 ~ -0.0068965
51724137931 / (1 + t) + 2.0(u(t))[3] + (u(t))[5] - 0.2(u(t))[6] - 0.8(u(t))
[2] - 2.0(u(t))[4], 0 ~ 0.034482758620689655 / (1 + t) + 2.0(u(t))[29] + (u
(t))[27] - 0.2(u(t))[26] - 2.0(u(t))[28] - 0.8(u(t))[31]]))), [0.0517241379
3103448, 0.08620689655172414, 0.1206896551724138, 0.15517241379310345, 0.18
96551724137931, 0.22413793103448276, 0.25862068965517243, 0.293103448275862
04, 0.3275862068965517, 0.3620689655172414  …  0.7068965517241379, 0.741379
3103448276, 0.7758620689655172, 0.8103448275862069, 0.8448275862068966, 0.8
793103448275862, 0.9137931034482759, 0.9482758620689655, 0.0172413793103448
27, 1.0172413793103448], (0.0, 20.0), SciMLBase.NullParameters(), Base.Pair
s{Symbol, Union{}, Tuple{}, NamedTuple{(), Tuple{}}}(), SciMLBase.StandardO
DEProblem())

Work-Precision Plot for Burgers Equation, Neumann BCs

abstols = 1.0 ./ 10.0 .^ (5:8)
reltols = 1.0 ./ 10.0 .^ (1:4);
setups = [Dict(:alg => solver, :prob_choice => 1),
          Dict(:alg => solver, :prob_choice => 2),
          Dict(:alg => solver, :prob_choice => 3),
          Dict(:alg => solver, :prob_choice => 4),
          Dict(:alg => solver, :prob_choice => 5),
          Dict(:alg => solver, :prob_choice => 6),]
names = ["Uniform Upwind, center_align", "Uniform Upwind, edge_align", "Nonuniform Upwind, center_align",
         "Nonuniform Upwind, edge_align", "WENO, center_align", "WENO, edge_align"];

wp = WorkPrecisionSet(probs2, abstols, reltols, setups; names=names,
                      save_everystep=false, maxiters=Int(1e5),
                      numruns=10, wrap=Val(false))
plot(wp)
Error: MethodError: no method matching getindex(::Nothing, ::Int64)